Skip to content

Instantly share code, notes, and snippets.

@rosehgal
Created July 26, 2018 05:29
Show Gist options
  • Save rosehgal/df50f451fd290e097282f4645ff8893c to your computer and use it in GitHub Desktop.
Save rosehgal/df50f451fd290e097282f4645ff8893c to your computer and use it in GitHub Desktop.
#include <stdio.h>
void foo()
{
char ch[10];
printf("Hello from fucntion");
}
int main()
{
foo();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment