find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / guest
6
| Is This Answer Correct ? | 103 Yes | 4 No |
Post New Answer View All Answers
What is meant by int main ()?
What is the difference between union and anonymous union?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is #include stdio h and #include conio h?
What are the 4 types of functions?
What is the difference between abs() and fabs() functions?
How can this be legal c?
How many identifiers are there in c?
What is array of pointers to string?
Why main is not a keyword in c?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Can the “if” function be used in comparing strings?
What is pointer and structure in c?
Why do we use static in c?
Why enum is used in c?