Write a factorial program using C.


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

Post New Answer

More C Interview Questions

out put of printf(“%d”,printf(ram));

5 Answers  


What is the difference between declaring a variable and defining a variable?

0 Answers  


#&#8206;include&#8236;<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }

2 Answers   Facebook,


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

0 Answers   Lovely Professional University,


convert 0.9375 to binary

2 Answers   CTS, TANCET,


Tell me is null always defined as 0(zero)?

0 Answers  


What are types of preprocessor in c?

0 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


Do string constants represent numerical values?

0 Answers  


How are pointers declared in c?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


program for reversing a selected line word by word when multiple lines are given without using strrev

0 Answers   IBM,


Categories