How can you avoid including a header more than once?
No Answer is Posted For this Question
Be the First to Post Answer
What does void main return?
Explain #pragma in C.
Difference between for loop and while loop?
whats the use of header file in c?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What is the deal on sprintf_s return value?
Write a program for deleting duplicate elements in an array
What is the use of getch ()?
What is #line used for?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
What is the purpose of #pragma directives in C?