Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
#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