Difference between pass by reference and pass by value?
No Answer is Posted For this Question
Be the First to Post Answer
What are c preprocessors?
diff. between *p and **p
What is #ifdef ? What is its application?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
what is the difference between getch() and getchar()?
Why c is called free form language?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
char ch="{'H','I',0};printf("%s",ch);what is output
write a program to display numbers from 1 to 10 and 10 to 1?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
can i know the source code for reversing a linked list with out using a temporary variable?