What are runtime error?
No Answer is Posted For this Question
Be the First to Post Answer
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
When should I declare a function?
What is the difference between near, far and huge pointers?
Explain how do you override a defined macro?
What is the difference between strcpy() and memcpy() function in c programming?
What are control structures? What are the different types?
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
using for loop sum 2 number of any 4 digit number in c language
Does free set pointer to null?
What is #include in c?