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
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
1. Write a program to reverse every second word in a given sentence.
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Is Exception handling possible in c language?
what is pointer?
13 Answers HCL, TCS,
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
Can we declare a function inside a function in c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
how we can say java is platform independent, while we require JVM for that particular Operating System?
Are there namespaces in c?
Explain what is the difference between a free-standing and a hosted environment?
What is the use of a conditional inclusion statement in C?