what is Array?
Answers were Sorted based on User's Feedback
Answer / lakshmi
it is a grouped item of consequitive memory elements with
similar type of values.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / lakshmi
Array is the group of consequitive elements with same type.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / guest
collection of element in continuous memory location
| Is This Answer Correct ? | 1 Yes | 1 No |
what is diference between return 0 and return NULL??
Where is c used?
What is meant by int fun const(int a, int b) { .... ... }
what is the diference between pointer to the function and function to the pointer?
What is optimization in c?
the data type used for unlimited value in c and how to do this program
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
What is c value paradox explain?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Will Macros support multiple arguments ?
Is swift based on c?
Difference between constant pointer and pointer to a constant.