Can we compile a program without main() function?
No Answer is Posted For this Question
Be the First to Post Answer
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
wat is the meaning of c?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What is the size of empty structure in c?
What is the auto keyword good for?
main() { printf(5+"Vidyarthi Computers"); }
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
where do we use volatile keyword?
What is memory leak in c?
Give differences between - new and malloc() , delete and free() ?
What is void main ()?