What is a union?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between Printf(..) and sprint(...) ?
why do we use # in c-language?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
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...
What is the code for 3 questions and answer check in VisualBasic.Net?
Explain how can I pad a string to a known length?
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is string function in c?