WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW
IT COME ..
#include<stdio.h>
#include<conio.h>
void main()
{
int k=20;
printf("%d%d%d%d",k,k++,++k,k);
getch();
}
Answer Posted / pratik
but how answer came ? ?
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are structures and unions? State differencves between them.
How do you override a defined macro?
What is the difference between functions abs() and fabs()?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Explain how do you generate random numbers in c?
Why does everyone say not to use gets?
What is the use of function in c?
How do you generate random numbers in C?
Explain the difference between malloc() and calloc() function?
What is typedf?
Should a function contain a return statement if it does not return a value?
What is c programming structure?
Why main is used in c?
Why header files are used?
How do you sort filenames in a directory?