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 / uma
ya its absolutely any where in the program
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Write a program to reverse a given number in c language?
What is context in c?
Explain the use of 'auto' keyword
Why we use conio h in c?
#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 can I ensure that integer arithmetic doesnt overflow?
Why should I use standard library functions instead of writing my own?
What is wrong with this code?
What is advantage of pointer in c?
Explain c preprocessor?
What are different types of variables in c?
Why void is used in c?
What is a program flowchart?
Can you think of a logic behind the game minesweeper.
How do I determine whether a character is numeric, alphabetic, and so on?