find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / dilip
6
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What do you mean by scope of a variable in c?
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
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
How can you find the exact size of a data type in c?
Explain how can you avoid including a header more than once?
Explain how are portions of a program disabled in demo versions?
What are the two forms of #include directive?
Here is a neat trick for checking whether two strings are equal
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is a static function in c?
Is null a keyword in c?
Why clrscr is used after variable declaration?
Can we access the array using a pointer in c language?
Why void main is used in c?
what value is returned to operating system after program execution?