Where does the name "C" come from, anyway?
No Answer is Posted For this Question
Be the First to Post Answer
Explain function pointer with exapmles.
Explain the use of fflush() function?
What is the size of empty structure in c?
What is difference between function overloading and operator overloading?
Differentiate between static and dynamic modeling.
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
hi send me sample aptitude papers of cts?
How to throw some light on the b tree?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Is it valid to address one element beyond the end of an array?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Why is it important to memset a variable, immediately after allocating memory to it ?