find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}

Answer Posted / ganesh auti,pune

6

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is meant by int main ()?

721


Explain how do you print only part of a string?

652


How can you check to see whether a symbol is defined?

595


explain what are pointers?

620


What does a pointer variable always consist of?

667






what is a NULL Pointer? Whether it is same as an uninitialized pointer?

760


define string ?

671


Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250

1511


How can you draw circles in C?

629


What is getch() function?

651


Using which language Test cases are added in .ptu file of RTRT unit testing???

3605


How do I read the arrow keys? What about function keys?

616


How are strings stored in c?

598


Why array is used in c?

553


What is scanf () in c?

666