what is meant by the "equivalence of pointers and arrays" in
C?
Answers were Sorted based on User's Feedback
Answer / sameer
name of array(without subscript) points to the first
location of array.
eg. a[10].
a points to first location of array.
| Is This Answer Correct ? | 1 Yes | 3 No |
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
How do you print only part of a string?
What does dm mean sexually?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are integer variable, floating-point variable and character variable?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
What is malloc() function?
what do you mean by enumeration constant?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300