Program starts with main function : Main « Language Basics « C / ANSI-C






Program starts with main function

#include "stdio.h"

int main(void)
{
  printf("This is a test");

  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.Const function in all c programs: main() function