Answer Posted / suruthi.s
A data type which is created using abstract data process is
known as abstract data type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are variables c?
Is it possible to pass an entire structure to functions?
Give basis knowledge of web designing ...
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
Explain high-order bytes.
What is main () in c?
What is the significance of scope resolution operator?
What do the functions atoi(), itoa() and gcvt() do?
What are local static variables? How can you use them?
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!+....
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Between macros and functions,which is better to use and why?
What does %c mean in c?
What is static and volatile in c?
Explain what are reserved words?