find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / visalakshi
yes it is six
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Define the scope of static variables.
Explain continue keyword in c
Why does everyone say not to use scanf? What should I use instead?
What is the collection of communication lines and routers called?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is the difference between text files and binary files?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What happens if header file is included twice?
Explain what is page thrashing?
Can a void pointer point to a function?
Explain what is the benefit of using const for declaring constants?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What are the general description for loop statement and available loop types in c?