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
Explain how can I convert a string to a number?
What is a void pointer in c?
Explain which function in c can be used to append a string to another string?
What are the advantages and disadvantages of c language?
Tell us bitwise shift operators?
What is function prototype?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is the use of a ‘ ’ character?
What is the use of static variable in c?
What is the stack in c?
Explain what are multibyte characters?
How can I get back to the interactive keyboard if stdin is redirected?
What is quick sort in c?
How to write c functions that modify head pointer of a linked list?
Can a void pointer point to a function?