answersLogoWhite

0

Please visit http://talentsealed.blogspot.com/2009/10/to-find-sqaure-of-numbers-using-c.htmlfor the answer.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you write Square program using vb?

write a vb program to find the magic square


How do you write an assembly language program to find the sum of n numbers using array?

write an assembly language program to find sum of N numbers


How to write a C program to find largest 2 numbers using pointers?

program to find maximum of two numbers using pointers


How do you write a VBnet program to find the prime numbers between 100 to 200?

VBnet program to find the prime numbers between 100 to 200?


How do you write a program to find out the square and cube of first ten natural numbers in gw basic?

First you will need to have some basic programming knowledge. You can use this to help make the program that is needed.


Write a Shell program to find the smallest number from a set of numbers?

k


How do you write a java program to find the square root of a number?

You can use the Math.sqrt() method.


Write a program to find the product of two numbers using Halving and Doubling method?

i need this answer


Write a C plus plus program to find out the square of first 10 numbers?

#include<iostream> int main() { int i=0; while(i++<10) std::cout<<i*i<<std::endl; }


Write a C program to find the sum of all prime numbers?

Since there is an infinite set of prime numbers the answer would be infinity.


How do you write a c program to find square of a no using call by value?

int square (int N) return N*N;


How do you write a program to find the area of a square in qbasic?

To write a program in QBASIC to find the area of a square, you first need to prompt the user to enter the length of one side of the square. You can then calculate the area by squaring the length (multiplying it by itself) and finally display the result. Here's a simple example: INPUT "Enter the length of the side of the square: ", side area = side * side PRINT "The area of the square is: "; area