Johnny Mad Dog
M. J. D. Brendell has written: 'Coleoptera'
D M J. Davidson has written: 'Glass and glazing'
D. J. M. Hooson has written: 'Climate and man'
/* Ramana Reddy -IIIT */ #include main() { int a[10][10],i,j,m,n,sum=0; printf("Size of Matrix M*N:\n "); scanf("%d%d",&m,&n); if(m==n) { printf("\nEnter %d elements: \n",m*n); for(i=0;i
T
D
Words that can be made from the letters 's m d j a d o e' are:aadadoamasdaddadodamdamedeaddodoedoesdomejadejammadmadememeadmodeoddodesadsameseaseamsosodsodasome
The most popular first name initials vary by region and culture, but in many Western countries, initials like "J" (for names like James and Jessica), "A" (for Aaron and Ashley), and "M" (for Michael and Mary) tend to be common. In the United States, "J" is particularly prevalent due to the popularity of names beginning with that letter. Additionally, initials can reflect trends in naming conventions that change over time. Overall, "J," "A," and "M" are often among the top initials in various demographics.
#include<stdio.h> #include<conio.h> #include<math.h> void main() { int a[10][10],sum=0,i,j,m,n,trace=0; float norm; printf("enter order"); scanf("%d %d",&m,&n); printf("enter elements "); for(i=0;i<m;i++) {for(j=0;j<m;j++) scanf("%d",&a[i][j]); } for(i=0;i<m;i++) { for(j=0;j<m;j++) { sum=sum+(a[i][j]*a[i][j]); if(i==j) trace=trace+a[i][j]; } } norm=sqrt(sum); printf("norm=%f\n trace=%d",norm,trace); }
#include<stdio.h> #include<conio.h> main() { int a[10][10],b[10][10],c[10][10],m,n,i,j,p,q,op; printf("enter the order of matrix a:n"); scanf("%d",&m,&n); printf("enter the %d elements of a\n",m*); for(i=0;i<m;i++) for(j=0;j<n;j++) scanf("%d",&a[i][j]); printf("enter the order of matrix b:n"); scanf("%d",&p,&q); printf("enter the %d elements of b\n",p*q); for(i=0;i<p;i++) for(j=0;j<q;j++) scanf("%d",&b[i][j]); printf("enter the option\n"); scanf("%d",&option); switch(op) { case '+' : if(m==p&&n==q) printf("the resultant matrix c is:\n"); for(i=0;i<m;i++) for(j=0;j<n;j++) c[i][j]=a[i][j]+b[i][j]; printf("%d",c[i][j]); printf("\n"); break; case '/' : if(n==p) { for(i=0;i<m;;i++); {for(j=0;j<q;j++) {printf("%d",c[i][j]); } } c[i][j]=0; for(p=0;p<n;p++) c[i][j]=c[i][j]+a[i][p]*b[p][j]: } printf("resultant matrix is:\n"); for(i=0;i<m;;i++); {for(j=0;j<q;j++) {printf("%d\t",c[i][j]); } } printf("\n"); getch(); }
The letters "m j d" inside a gold ring could potentially represent the initials of a person's name. Alternatively, it could be a maker's mark indicating the jewelry designer or manufacturer who created the ring. It is important to note that without additional context or information, it is difficult to determine the exact meaning of these letters.
#include<stdio.h> main() { printf("Enter Order Of The Matrix\n"); int l,m; int i,j,k,t,x; scanf("%d%d",&l,&m); int a[l][m],temp[l*m]; printf("Enter The Elements Row Wise...\n"); for(i=0;i<l;i++) { for(j=0;j<m;j++) { scanf("%d",&a[i][j]); } } printf("Matrix A \n "); for(i=0;i<l;i++) { printf("\n"); for(j=0;j<m;j++) { printf("%d\t",a[i][j]); } } /*----------------------------------------------------------------------*/ x=0; for(i=0;i<l;i++) { for(j=0;j<m;j++) { temp[x]=a[i][j]; x++; } } for(i=0;i<l*m;i++) { for(j=0;j<(l*m)-1;j++) { if(temp[j]>temp[j+1]) { t=temp[j]; temp[j]=temp[j+1]; temp[j+1]=t; } } } x=0; for(i=0;i<l;i++) { for(j=0;j<m;j++) { a[i][j]=temp[x]; x++; } } printf("\nMatrix A After Sort \n "); for(i=0;i<l;i++) { printf("\n"); for(j=0;j<m;j++) { printf("%d\t",a[i][j]); } } }