find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / rajeesh
Six -6
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is c++ used for today?
What is difference between array and pointer in c?
Explain what is page thrashing?
What is the total generic pointer type?
What is the general form of a C program?
What is call by reference in functions?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Why c is called a mid level programming language?
what is the diffrenet bettwen HTTP and internet protocol
Distinguish between actual and formal arguments.
Explain the advantages and disadvantages of macros.
Can you please explain the difference between malloc() and calloc() function?
Can you please explain the difference between strcpy() and memcpy() function?
What is calloc malloc realloc in c?
What are the modifiers available in c programming language?