Write a program for finding factorial of a number.


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

Post New Answer

More C Interview Questions

What is difference between static and global variable in c?

0 Answers  


A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream

0 Answers  


What do you understand by normalization of pointers?

0 Answers  


Is anything faster than c?

0 Answers  


What is a double c?

0 Answers  






c program to subtract between two numbers without using '-' sign and subtract function.

2 Answers  


What is the use of sizeof () in c?

0 Answers  


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

0 Answers  


#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


program to print upper & lower triangle of a matrix

2 Answers   TCS,


implement OR gate without using any bitwise operator.

1 Answers   Alcatel, Wipro,


main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }

6 Answers  


Categories