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
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Why static is used in c?
What is a pointer on a pointer in c programming language?
What is c method?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
How many levels of pointers have?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
How can I ensure that integer arithmetic doesnt overflow?
How many main () function we can have in a project?
shorting algorithmS
What are the 3 types of structures?
Explain what does a function declared as pascal do differently?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
what is the basis for selection of arrays or pointers as data structure in a program
Under what circumstances does a name clash occur?