What is ambagious result in C? explain with an example.
No Answer is Posted For this Question
Be the First to Post Answer
Can we assign integer value to char in c?
how can we use static and extern?and where can we use this?
Are global variables static in c?
Why do we use stdio h and conio h?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
why we are using float in C
What is file in c language?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
In c language can we compile a program without main() function?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }