Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / kesavalu

#include<stdio.h>
#include<conio.h>
main()
{
int d;
printf("enter any no except 1");
scanf("%d",&d);
clrscr();
printf("1");
getch();
}

Is This Answer Correct ?    9 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to draw the flowchart for structure programs?

9284


What is adt in c programming?

1122


Why do we use int main?

1054


What is a spanning Tree?

1521


Compare interpreters and compilers.

1039


Write a program to print factorial of given number without using recursion?

963


What are the uses of a pointer?

1121


Explain 'bit masking'?

1041


What are the rules for the identifier?

1121


What are the two types of structure?

1054


Explain is it better to bitshift a value than to multiply by 2?

1154


What is an endless loop?

1242


What is a memory leak? How to avoid it?

1279


What is string constants?

1115


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

1101