Created
June 6, 2021 07:47
-
-
Save LinArcX/229050968f8ebab1efbcf6e8030feb0e to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
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