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 |
wats SIZE_T meant for?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Why isn't any of this standardized in c? Any real program has to do some of these things.
provide an example of the Group by clause, when would you use this clause
What is a macro?
Differentiate between ordinary variable and pointer in c.
List some of the dynamic data structures in C?
What are the key features in c programming language?
What are the languages are portable and platform independent?Why they are like that?
What is the maximum no. of arguments that can be given in a command line in C.?
who is the father of C Language?
20 Answers CTS, UST,