how to execute with out main in cprogram
Answer Posted / developer
Coding seekh le Ravinder.
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
How many keywords are there in c?
Explain about block scope in c?
What are local variables c?
Why is c so powerful?
Explain the term printf() and scanf() used in c language?
What does. int *x[](); means ?
Can we replace the struct function in tree syntax with a union?
What are the primitive data types in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is meant by gets in c?
What is the use of getch ()?
int far *near * p; means
What is the purpose of void pointer?
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 ].
Do array subscripts always start with zero?