Answer Posted / visitor
I think we must use nested for loop, with gotoxy function in
it. But i don't know how to apply this theory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between array and structure in c?
What is strcmp in c?
What are external variables in c?
How do I send escape sequences to control a terminal or other device?
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!+....
How to Throw some light on the splay trees?
What is a program flowchart and how does it help in writing a program?
What are the types of operators in c?
Explain the ternary tree?
How do you write a program which produces its own source code as output?
What is scope rule of function in c?
How are Structure passing and returning implemented by the complier?
Can I initialize unions?
What is class and object in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.