Skip to content

Instantly share code, notes, and snippets.

@LinArcX
Created June 6, 2021 07:47
Show Gist options
  • Save LinArcX/229050968f8ebab1efbcf6e8030feb0e to your computer and use it in GitHub Desktop.
Save LinArcX/229050968f8ebab1efbcf6e8030feb0e to your computer and use it in GitHub Desktop.
#include <stdio.h>
int my_dummy_func()
{
printf("hi\n");
return 0;
}
int main(int argc, char** argv)
{
int temp = my_dummy_func();
for(int i = 0; i < 10; i++)
{
printf("%d\n", i);
}
getchar();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment