What are compound statements?
No Answer is Posted For this Question
Be the First to Post Answer
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
What is conio h in c?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What are the uses of a pointer?
What is the meaning of ?
#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,
What is pointer to pointer in c language?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
What is c language & why it is used?
What is a Deque?
What is the difference between constant pointer and constant variable?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?