void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answers were Sorted based on User's Feedback
can we execute the program with the object file
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
the operator for exponencation is a.** b.^ c.% d.not available
why do some people write if(0 == x) instead of if(x == 0)?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
What is the difference between array and pointer in c?
Explain how can a program be made to print the name of a source file where an error occurs?
Difference between Function to pointer and pointer to function
What does do in c?
number of times a digit is present in a number
Mention four important string handling functions in c languages .
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?