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 a pointer in c?
What are the complete rules for header file searching?
What is difference between array and structure in c?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Write program to remove duplicate in an array?
What are predefined functions in c?
How do you convert strings to numbers in C?
What does the format %10.2 mean when included in a printf statement?
What is && in c programming?
What is #include cctype?
The difference between printf and fprintf is ?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is || operator and how does it function in a program?
Why do we use c for the speed of light?
What is break in c?