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 / priyanka
20,20,21,20
| Is This Answer Correct ? | 5 Yes | 20 No |
Post New Answer View All Answers
How to write c functions that modify head pointer of a linked list?
How can a number be converted to a string?
explain what are pointers?
What are variables c?
What is difference between arrays and pointers?
What tq means in chat?
What is typedef?
Explain what are the standard predefined macros?
What is the use of header?
Can an array be an Ivalue?
What are control structures? What are the different types?
What does the format %10.2 mean when included in a printf statement?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is a pointer in c?
#include