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
Does free set pointer to null?
What is dynamic dispatch in c++?
Do you know what are the properties of union in c?
Explain goto?
Explain what does a function declared as pascal do differently?
Which are low level languages?
write a program to rearrange the array such way that all even elements should come first and next come odd
Is main is user defined function?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is volatile variable in c?
How to explain the final year project as a fresher please answer with sample project
Where we use clrscr in c?
How can I trap or ignore keyboard interrupts like control-c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What are the characteristics of arrays in c?