Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
how to write a program to find square of number without using opeartors
0
votes
asked
Jan 18, 2018
by
Rubiya RS
(
120
points)
Please
log in
or register to answer this question.
2 Answers
0
votes
answered
Jan 19, 2018
by
Anup
#include<stdio.h>
#include<math.h>
int main(int argc, char* argv[])
{
int n,res;
n=atoi(argv[1]);
res=power(n,2);
printf("result is =%d",res);
return(0);
}
commented
Jan 20, 2018
by
anonymous
What s res,.. WHY COMMENTS HAVE TO HAVE MIN 12 CHARACTERS...
Please
log in
or register to add a comment.
0
votes
answered
Jan 23, 2018
by
anonymous
find the sum of n odd nos if you have to find square of n
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...