write a c program to find the square of a 5 digit number
and print the result.
Answer Posted / balagopalan
#include<stdio.h>
int main()
{
long long int a = 99999;
long long int b = a * a;
printf("%lld" , b);
return 0;
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Write a program to print “hello world” without using semicolon?
How main function is called in c?
What is the use of a conditional inclusion statement in C?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Is boolean a datatype in c?
Differentiate between static and dynamic modeling.
How can type-insensitive macros be created?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is null pointer constant?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is meant by realloc()?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is the use of volatile?
What is the size of structure in c?
How can you be sure that a program follows the ANSI C standard?