Write a program for finding factorial of a number.
No Answer is Posted For this Question
Be the First to Post Answer
How to avoid buffer overflow?
When a c file is executed there are many files that are automatically opened what are they files?
What does c mean in standard form?
Why isnt any of this standardized in c?
Write a program to swap two numbers without using a temporary variable?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Can the “if” function be used in comparing strings?
What is a ternary operator in c?
Write a code of a general series where the next element is the sum of last k terms.
Write a program to find the biggest number of three numbers in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures