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.nikam3112
answer is
22 21 21 20
| Is This Answer Correct ? | 38 Yes | 8 No |
Post New Answer View All Answers
What’s the special use of UNIONS?
What are derived data types in c?
Is file a keyword in c?
How can I get back to the interactive keyboard if stdin is redirected?
What is the benefit of using an enum rather than a #define constant?
What is putchar() function?
What is a c token and types of c tokens?
What are the different types of data structures in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
How can you increase the size of a dynamically allocated array?
How are structure passing and returning implemented?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is string function c?
Write program to remove duplicate in an array?
What is break in c?