#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answers were Sorted based on User's Feedback
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is self-referential structure in c programming?
What is the exact difference between '\0' and ""
Give me the code of in-order recursive and non-recursive.
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
define switch statement?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Is c procedural or object oriented?
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
What is output redirection?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is the difference between %d and %i?