what is array?

Answer Posted / raja

an array is collection of similar data types, and it
occupies the memory in a sequence of order

Is This Answer Correct ?    6 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between ordinary variable and pointer in c.

618


What is a far pointer in c?

599


What is null character in c?

691


How can I change their mode to binary?

698


In which header file is the null macro defined?

857






How can my program discover the complete pathname to the executable from which it was invoked?

660


What is #error and use of it?

681


Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?

2173


What are multibyte characters?

644


What is the difference between the = symbol and == symbol?

629


p*=(++q)++*--p when p=q=1 while(q<=6)

1268


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5209


What is a loop?

556


Explain how can I remove the trailing spaces from a string?

625


Write a program of prime number using recursion.

620