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
What language is lisp written in?
Write a code to generate divisors of an integer?
What do mean by network ?
Explain data types & how many data types supported by c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What does *p++ do? What does it point to?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is the significance of an algorithm to C programming?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Explain zero based addressing.
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
difference between native and cross compilers
Do pointers store the address of value or the actual value of a variable?
Explain what is the difference between #include and #include 'file' ?