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 s); | |
string global = "SUPERMAN!"; | |
int main(void) | |
{ | |
// Passing global as an argument | |
// changes the output because | |
// we are passing by value. | |
global = "FLASH"; | |
my_function(global); | |
printf("the global variable is %s\n", global); | |
} | |
string my_function(string s) | |
{ | |
s = "BATMAN!"; | |
return s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment