input may any number except 1,output will always 1..
conditions only one variable should be declare,don't use
operators,expressions,array,structure
Answer Posted / nila
#include<stdio.h>
#include<conio.h>
main()
{
int a;
printf("Enter the number:");
scanf("%d",&a);
printf("1");
getch();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is a example of a variable?
while initialization of array why we use a[][2] why not a[2][]...?
Is there a way to switch on strings?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
In a header file whether functions are declared or defined?
What is the auto keyword good for?
Explain how can I right-justify a string?
What is #include called?
What is data types?
How to set file pointer to beginning c?
How to define structures? ·
What is the method to save data in stack data structure type?
What is pass by reference in functions?
What are the 4 types of functions?
What are the string functions? List some string functions available in c.