Why flag is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the total generic pointer type?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What are static variables, and where are they stored?
What are identifiers c?
please give me some tips for the placement in the TCS.
The file stdio.h, what does it contain?
whitch value return void main?
Give me the code of in-order recursive and non-recursive.
What are the types of unary operators?
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
What is an volatile variable?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?