program to print circle structure
Answer / 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 |
write a program to generate 1st n fibonacci prime number
Can a program have multiple main() functions?
What does == mean in texting?
What is #line used for?
Difference between C and Embedded C?
What are structural members?
Explain which function in c can be used to append a string to another string?
i have a written test for microland please give me test pattern
How can you find out how much memory is available?
what is meant by flushll() in c programming?
Explain goto?
what is the use of operator ^ in C ? and how it works?