int main()
{
Int n=20,i;
For(i=0;i<=n;i--)
{
Printf(“-“);
Return 0;


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none

0 Answers  


What is meant by gets in c?

0 Answers  


What is mean by data types in c?

0 Answers  


What is the c language function prototype?

0 Answers  


What is bash c?

0 Answers  






What do mean by network ?

0 Answers  


What are the characteristics of arrays in c?

0 Answers  


can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?

2 Answers  


What are the features of c language?

0 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

1 Answers  


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!+....

2 Answers   Ignou,


write a c program to add two integer numbers without using arithmetic operator +

13 Answers   Value Labs,


Categories