Where define directive used?
No Answer is Posted For this Question
Be the First to Post Answer
What is default value of global variable in c?
What is the output of printf("%d", printf("Hello"));?
What is the meaning of c in c language?
What is difference between array and pointer in c?
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
What is the scope of static variables?
What is the translation phases used in c language?
c program to add and delete an element from circular queue using array
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
Write a program to print factorial of given number using recursion?