c-course/c-basic/return.2.c

7 lines
124 B
C
Raw Normal View History

2024-02-19 04:41:09 +03:00
#include <stdio.h>
int main(){
printf("I am main\n");
return 0; // with our without same result will be executed
}