write a c program to find the square of a 5 digit number
and print the result.
Answer Posted / ishany gaurav
#include<iostream.h>
#include<conio.h>
void main()
{
int i,k,j,l;
cout<<"lets find out the square of five digit no.";
cout<<"enter the five digit no." ;
cin>>i;
k=i*i;
cout<<"square of a no. is"<<k;
getch();
}
| Is This Answer Correct ? | 9 Yes | 30 No |
Post New Answer View All Answers
What are the standard predefined macros?
What is meant by initialization and how we initialize a variable?
What is the difference between c &c++?
What are loops in c?
What is unary operator?
Explain what is the difference between far and near ?
What is character constants?
What does == mean in texting?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What is c preprocessor mean?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
What is the most efficient way to store flag values?
What is the significance of c program algorithms?
What are the advantages of union?
Write a program to find factorial of a number using recursive function.