Answer Posted / dippi
data structure is a structure in which elements having
different datatypes can be kept
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is a const pointer in c?
In a byte, what is the maximum decimal number that you can accommodate?
What is wrong with this declaration?
What is auto keyword in c?
What is a dynamic array in c?
What is the difference between fread buffer() and fwrite buffer()?
What is ambagious result in C? explain with an example.
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
cavium networks written test pattern ..
What are the types of type specifiers?
Can stdout be forced to print somewhere other than the screen?
Write a program to print fibonacci series without using recursion?
Can you tell me how to check whether a linked list is circular?
What is extern keyword in c?
When should a type cast not be used?