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 / amala v
anywhere in the program
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Explain argument and its types.
how should functions be apportioned among source files?
Why is a semicolon (;) put at the end of every program statement?
Suggesting that there can be 62 seconds in a minute?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is header file definition?
Do character constants represent numerical values?
Array is an lvalue or not?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is a char c?
How is = symbol different from == symbol in c programming?
What is the sizeof () operator?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Where are c variables stored in memory?