What is the explanation for prototype function in c?
What is the use of define in c?
Is c functional or procedural?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
What is c preprocessor mean?
What is a protocol in c?
WHAT IS MEANT BY LIFE?
State two uses of pointers in C?
Why can arithmetic operations not be performed on void pointers?
How can I determine whether a machines byte order is big-endian or little-endian?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
what is the difference between #include<stdio.h> and #include "stdio.h" ?