what is array?

Answer Posted / shubham

an array is a series of values in computers memory all of which have the same name and also same data type but they are differ with special values called subscripts

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to know whether the input number is an armstrong number.

669


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3245


What is the difference between functions getch() and getche()?

616


Is null a keyword in c?

731


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

728






What is #line?

608


Write a C program linear.c that creates a sequence of processes with a given length. By sequence it is meant that each created process has exactly one child. Let's look at some example outputs for the program. Here the entire process sequence consists of process 18181: Sara@dell:~/OSSS$ ./linear 1 Creating process sequence of length 1. 18181 begins the sequence. An example for a sequence of length three: Sara@dell:~/OSSS$ ./linear 3 Creating process sequence of length 3. 18233 begins the sequence. 18234 is child of 18233 18235 is child of 18234 ........ this is coad .... BUt i could not compleate it .....:( #include #include #include #include int main(int argc, char *argv[]) { int N; pid_t pid; int cont; if (argc != 2) { printf("Wrong number of command-line parameters!\n"); return 1; } N = atoi(argv[1]); printf("Creating process sequence of length %d.\n",N); printf("%d begins the sequence.\n",getpid()); /* What I have to do next ?????? */ }

1615


What is getch?

630


What is data type long in c?

621


What is typedef?

666


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1461


Is fortran faster than c?

576


What is the purpose of sprintf() function?

598


Explain continue keyword in c

581


Explain what is the benefit of using an enum rather than a #define constant?

717