Main must be written as
a.the first function in the program
b.Second function in the program
c.Last function in the program
d.any where in the program
Answer Posted / ram basa
any where in the program
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is openmp in c?
Explain what is operator promotion?
write a proram to reverse the string using switch case?
Where we use clrscr in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How are structure passing and returning implemented?
What is auto keyword in c?
What functions are used for dynamic memory allocation in c language?
Disadvantages of C language.
What is console in c language?
What type of function is main ()?
Why c is procedure oriented?
Explain what are linked list?
What are linked lists in c?