Write a program to print factorial of given number without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
wat are the two methods for swapping two numbers without using temp variable??
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What is the scope of local variable in c?
what is answer for perfect number????????????????
inline function is there in c language?
What is the difference between c &c++?
What are local static variables? How can you use them?
What is c system32 taskhostw exe?
write a program to display the array elements in reverse order in c language
How can I invoke another program from within a C program?
write a program in c to read array check element is present or not?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }