main()
{
int i = 10;
printf(" %d %d %d
", ++i, i++, ++i);
}
No Answer is Posted For this Question
Be the First to Post Answer
Why can't we initialise member variable of a strucutre
WHO WROTE C LANGUAGE?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
what is the function of pragma directive in c?
What is structure of c program?
How to convert decimal to binary in C using recursion??
Explain what are compound statements?
Can you write the function prototype, definition and mention the other requirements.
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
If the size of int data type is two bytes, what is the range of signed int data type?
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).