What is double pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does a function declared as pascal do differently?
What is const and volatile 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 ].
write a c program to find the sum of five entered numbers using an array named number
Explain modulus operator. What are the restrictions of a modulus operator?
What is the use of volatile?
explain how do you use macro?
What language is c written?
what do you mean by inline function in C?
What is the auto keyword good for?
what is difference between null and nul in c language
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )