Answer Posted / rina
compiler is convert to the program in assembly language to
machin language....
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are multidimensional arrays?
Can we access the array using a pointer in c language?
What are the types of type qualifiers in c?
Is it possible to pass an entire structure to functions?
Why is c called c not d or e?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is sizeof array in c?
Explain enumerated types in c language?
What the different types of arrays in c?
Why do we need arrays in c?
What is table lookup in c?
Write a program with dynamically allocation of variable.
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 are dangling pointers in c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?