What is define directive?
No Answer is Posted For this Question
Be the First to Post Answer
What is "Duff's Device"?
How can I allocate arrays or structures bigger than 64K?
how many argument we can pas in in a function
What are integer variable, floating-point variable and character variable?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
why array index always starts from zero??
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
What are the standard predefined macros?
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
What is file in c language?
How do you redirect a standard stream?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file