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 |
What is wrong with this declaration?
How. To pass the entrance test
What are types of preprocessor in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What do you mean by dynamic memory allocation in c?
What is Full Form of C and Why We use C
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
What is character set?
What is define directive?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
write a program to generate 1st n fibonacci prime number
explain about storage of union elements.