What is a #include preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
What is the most efficient way to store flag values?
What is difference between stdio h and conio h?
Explain what are the different file extensions involved when programming in c?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
How can variables be characterized?
Explain the use of fflush() function?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
what is void pointer?
give an example of type casting by a simple c program
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }