Write a factorial program using C.
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to swap two numbers without using third variable?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is use of pointer?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
What 'lex' does?
Explain what math functions are available for integers? For floating point?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is wrong with this program statement? void = 10;
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Write a program to generate prime factors of a given integer?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,