Answer Posted / prashant agarwal
this is give an compilation error
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
How was c created?
Why n++ execute faster than n+1 ?
What is ponter?
What is an example of structure?
What is the benefit of using #define to declare a constant?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is a MAC Address?
how should functions be apportioned among source files?
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 ].
What are the salient features of c languages?
What does double pointer mean in c?
What is c system32 taskhostw exe?
What is the right type to use for boolean values in c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
write a program to find out prime number using sieve case?