Answer Posted / pradeep
It is not a c program if it is not using main function.
Compiler starts execution from main function always.
Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
What is the difference between char array and char pointer?
Why is void main used?
why return type of main is not necessary in linux
How is = symbol different from == symbol in c programming?
Explain how can I read and write comma-delimited text?
What is the translation phases used in c language?
What type is sizeof?
What is size of union in c?
What is the collection of communication lines and routers called?
What is the use of bit field?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What are the advantages and disadvantages of pointers?
What is d scanf?
Explain what are the __date__ and __time__ preprocessor commands?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer