This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <cs50.h> | |
string my_function(); | |
string global = "SUPERMAN!"; | |
int main(void) | |
{ | |
// Using global variables. | |
// In this case there are no copies. | |
// The original global variable | |
// is modified | |
global = "FLASH"; | |
my_function(); | |
printf("the global variable is %s\n", global); | |
} | |
string my_function() | |
{ | |
global = "BATMAN!"; | |
return global; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment