Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / yogendrra
the main funtion is both user defind and sysyem defined
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the types of type specifiers?
What does the function toupper() do?
What is pointer in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Distinguish between actual and formal arguments.
Is there any data type in c with variable size?
What is void main () in c?
C program to find all possible outcomes of a dice?
How do you initialize pointer variables?
Can variables be declared anywhere in c?
Are the expressions * ptr ++ and ++ * ptr same?
What is pointer to pointer in c with example?
How macro execution is faster than function ?
What is scope of variable in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?