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
explain what is fifo?
What is time null in c?
How many levels of pointers have?
Explain what is the heap?
What is the easiest sorting method to use?
Tell me about low level programming languages.
How to write a code for reverse of string without using string functions?
What is the purpose of void in c?
Explain what does the format %10.2 mean when included in a printf statement?
Explain void pointer?
What is #define size in c?
What are run-time errors?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Is c high or low level?
State the difference between realloc and free.