how to execute with out main in cprogram
Answer Posted / rina
any c program is not run without main function
main function is compalsary in c program
| Is This Answer Correct ? | 6 Yes | 8 No |
Post New Answer View All Answers
What is the use of header files?
How can I do graphics in c?
What are the storage classes in C?
Is c is a low level language?
What is calloc()?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is define c?
Write a program to reverse a given number in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How pointer is different from array?
Which programming language is best for getting job 2020?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Explain pointer. What are function pointers in C?
Explain what is the difference between far and near ?
How can I list all of the predefined identifiers?