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
but how answer came ? ?
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is optimization in c?
What does c mean in standard form?
What are the different types of control structures in programming?
What is c standard library?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is the difference between procedural and functional programming?
What is use of bit field?
What is the use of header?
What is %s and %d in c?
What is the difference between scanf and fscanf?
How do you define CONSTANT in C?
What is the difference between array and linked list in c?
What are the disadvantages of a shell structure?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?