Answer Posted / revathipawar
no we cant write bcoz main() tells to the processor that it
is starting of the c programming
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What are the rules for identifiers in c?
How can I ensure that integer arithmetic doesnt overflow?
What is structure in c explain with example?
How do you view the path?
What are the characteristics of arrays in c?
What does nil mean in c?
What is derived datatype in c?
When should the const modifier be used?
What does c mean in standard form?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is realloc in c?
What is the difference between array and pointer in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
explain what is a newline escape sequence?
Explain union. What are its advantages?