What is the purpose of main() function?
No Answer is Posted For this Question
Be the First to Post Answer
How can you determine the maximum value that a numeric variable can hold?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
What is dynamic memory allocation?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
what is diffrence between string and character array?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is the symbol indicated the c-preprocessor?
which is faster execution: loops or recursion?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none