When should the register modifier be used? Does it really help?
No Answer is Posted For this Question
Be the First to Post Answer
Juxtapose the use of override with new. What is shadowing?
How can I read/write structures from/to data files?
what is the self-referential structure?
What are linked lists in c?
write a program to remove occurrences the word from entered text?
What is a memory leak? How to avoid it?
How do you define CONSTANT in C?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
What is logical error?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
What is the difference between macros and inline functions?