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 / balug
22 21 21 20
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
How can I manipulate strings of multibyte characters?
Explain what is a 'locale'?
Why do we use pointer to pointer in c?
How can you determine the maximum value that a numeric variable can hold?
How to establish connection with oracle database software from c language?
What is a lvalue
What is main () in c language?
Explain bitwise shift operators?
What is the value of h?
Can we declare a function inside a function in c?
What are the functions to open and close the file in c language?
Write a program with dynamically allocation of variable.
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Write a code to generate a series where the next element is the sum of last k terms.