what is array?

Answer Posted / rahamatulla

Array is collectioan of homogenius data types which stored
in memory allocation

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is string function c?

656


What is a null string in c?

683


Explain setjmp()?

749


What is advantage of pointer in c?

801


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

717






Why is C language being considered a middle level language?

742


Why we not create function inside function.

1853


What is atoi and atof in c?

709


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1854


What type of function is main ()?

687


What are the loops in c?

684


Can we change the value of constant variable in c?

667


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

1720


In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.

1474


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

772