Answer Posted / sevak.yatrik777
#include<stdio.h>
#include<math.h>
int main(){
int ab, ord;
for(ab = -5; ab <= 5; ab++){
for(ord = -5; ord <= 5; ord++){
if(pow(ab,2)+pow(ord, 2)==25)
printf("+");
else
printf(" ");
}
printf("\n");
}
return 0;
}
| Is This Answer Correct ? | 18 Yes | 7 No |
Post New Answer View All Answers
Why we not create function inside function.
What is the size of structure pointer in c?
Why is void main used?
What is the use of getchar() function?
Can I initialize unions?
What are the application of void data type in c?
What is pointer in c?
What are linker error?
What is return in c programming?
What is structure in c definition?
In which language linux is written?
Difference between pass by reference and pass by value?
How to explain the final year project as a fresher please answer with sample project
When would you use a pointer to a function?
How can I call a function with an argument list built up at run time?