what is Array?

Answer Posted / guest

collection of element in continuous memory location

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1444


What is sizeof c?

604


In a byte, what is the maximum decimal number that you can accommodate?

621


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

722


What is equivalent to ++i+++j?

639






1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if

3974


What is c definition?

737


Can you please explain the difference between exit() and _exit() function?

585


while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above

732


What are all different types of pointers in c?

569


What is the correct declaration of main?

671


Why is struct padding needed?

625


In c language can we compile a program without main() function?

570


When is a null pointer used?

633


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1617