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 the value of a[3] if integer a[] = {5,4,3,2,1}?
Can you apply link and association interchangeably?
whitch value return void main?
what is the function of pragma directive in c?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
To what value do nonglobal variables default? 1) auto 2) register 3) static
How are variables declared in c?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is array of structure in c?
Write a C program that reads a series of strings and prints only those ending in "ed"
Why is #define used?