If fflush wont work, what can I use to flush input?
No Answer is Posted For this Question
Be the First to Post Answer
Can we declare a function inside a function in c?
What is volatile c?
How can I find the day of the week given the date?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
What are the advantages of c preprocessor?
write a program for fibonaci series by using while loop in c?
why should i select you?
Why c is procedure oriented?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
What does a pointer variable always consist of?