does c program run only main function code example
Example 1: run program without main method using macro
#include<stdio.h>
#define start main
void start()
{
printf("Hello, World!!!");
}
Example 2: main function in c
int main(int argc, char *argv[])