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...

write a c program to find the square of a 5 digit number
and print the result.

Answer Posted / sreenu

#include<stdio.h>
#include<conio.h>
void main()
{
long i,j
clrscr();
printf("enter the number");
scanf("%ld",&i);
j=i*i;
printf("the sqare of the number is %d",j);
getch();
}

Is This Answer Correct ?    30 Yes 23 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In c programming language, how many parameters can be passed to a function ?

1168


How to Throw some light on the splay trees?

1104


How can you determine the maximum value that a numeric variable can hold?

1299


What is #define?

1194


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

2886


How do I create a directory? How do I remove a directory (and its contents)?

1226


Can you write the function prototype, definition and mention the other requirements.

1201


What is a keyword?

1221


What are predefined functions in c?

1157


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

3172


Does sprintf put null character?

1096


find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2

2049


What are register variables? What are the advantage of using register variables?

1236


Are there constructors in c?

1060


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2697