Answer Posted / subha raman
it simply refers to the value stored in a[4]..."*" denotes
the value stored and "&" denotes the address of the
pointer..
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
What are the __date__ and __time__ preprocessor commands?
What are the features of c languages?
a program that can input number of records and can view it again the record
Define VARIABLE?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Can we change the value of static variable in c?
What does the && operator do in a program code?
Are bit fields portable?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What is stack in c?
What is the difference between void main and main in c?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is %d used for?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Explain output of printf("Hello World"-'A'+'B'); ?