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 / ramu
22 21 22 22
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are structure types in C?
There seem to be a few missing operators ..
what are bit fields? What is the use of bit fields in a structure declaration?
What is the benefit of using an enum rather than a #define constant?
Why & is used in c?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What are the types of type qualifiers in c?
If null and 0 are equivalent as null pointer constants, which should I use?
Differentiate between calloc and malloc.
Can include files be nested? How many levels deep can include files be nested?
What are the types of data files?
Can the “if” function be used in comparing strings?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Is a pointer a kind of array?
How can you increase the allowable number of simultaneously open files?