Const function in all c programs: main() function : Main « Language Basics « C / ANSI-C






Const function in all c programs: main() function

#include <stdio.h>


int main() {
    puts("program");
    return(0);
}


           
       








Related examples in the same category

1.Display Hello: output String
2.Display Hello and your name
3.Simple string ouput
4.main function
5.A for loop inside main functionA for loop inside main function
6.Program starts with main function