#include <stdio.h>
void main()
{
printf("hi");
}
.....................
#include <stdio.h>
int main ( void)
{
printf("hi");
return 0;
}
..............
q1: What is the diff in two codes?
q2: I am habitual of using code type 1 ( the first code), is it ok to follow that way?