Hi,
I'm new in the world of programming, I just begun to program in C langauage.. I started to write my first program using Borland C++ and I can use different styles :
1.
2.Code:#include <stdio.h>
main() {
printf("Help meee");
}
3.Code:#include <stdio.h>
int main() {
printf("Help meee");
return 0;
}
Code:#include <stdio.h>
int main(void) {
printf("Help meee");
return 0;
}

