3 equals rings in a circus
The answer depends on what R and C are.
If: C = 2r Then: r = C/2
p = r - c r - c = p r - c - r = p - r -(-c) = -(p) c = -p
3 times itself (or 32) equals 9.
3 equals rings in a circus
The answer depends on what R and C are.
C=2(pi)(r) therefore if r equals 3.20 then C=20.1061929
This is the associative law for addition: If a, b, c are any numbers then: a + (b + c) = (a + b) + c
If: C = 2r Then: r = C/2
p = r - c r - c = p r - c - r = p - r -(-c) = -(p) c = -p
3 times itself (or 32) equals 9.
p+c=r.
3r-r equals 12 = -9
-9
mabye
#include<stdio.h> #include<conio.h> void main() { int a[3][3],b[3][3],c[3][3],r,c; for(r=0;r<=3;r++) { for(c=0;c<3;c++) { printf("\n enter the value="); scanf("%d%d",&a[r][c],&b[r][c]); } } printf("\n first matrix=\n"); for(r=0;r<=3;r++) { for(c=0;c<3;c++) { printf("%d\t",a[r][c]); } printf("\n"); } printf("\n scond matrix=\n"); for(r=0;r<=3;r++) { for(c=0;c<3;c++) {printf("%d\t",b[r][c]); } printf("\n"); } printf("\n sum of given matrix=\n"); for(r=0;r<=3;r++) { for(c=0;c<3;c++) { c[r][c]=a[r][c]+b[r][c]; printf("%d\t",c[r][c]); } printf("\n"); } getch(); }