answersLogoWhite

0

you draw a line down, loop up, and dot over the line.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you write the letter j in handwriting?

j


How do you write j in script?

make a J


When and where was baseball player J. J. Davis born?

J. J. Davis was born October 25, 1978, in Glendora, CA, USA.


Where did Henry J Kaiser live?

oakland, ca


How do you make a backward j?

you write a 'j' backwards


Where is the J J Jackson Museum in Weaverville California located?

The address of the J J Jackson Museum is: 780 Main St, Weaverville, CA 96093


How do you write circa dates?

ca. 2011


Where is j boog home town?

J Boog the Reggae artist was born in Longbeach, CA and raised in Compton.


Why did Jessie j write do it like a dude?

Jessie j is a dude !


How do you Write a C program for matrix addition?

for (i=0; i<IMAX; i++) for (j=0; j<JMAX; j++) c[i,j] = a[i,j] + b[i,j];


Is ray-j piru?

yes he is.CVP on the westside of Carson,CA


How do you write a c program to add two matrices using functions?

#include<stdio.h> #include<conio.h> #include<process.h> void read_matrix(int x[10][10],int r,int c) { int i,j; for(i=0;i<r;i++) for(j=0;j<c;j++) scanf("%d",&x[i][j]); } void print_matrix(int x[10][10],int r,int c) { int i,j; for(i=0;i<r;i++) { for(j=0;j<c;j++) printf("%d",x[i][j]); printf("\n"); } } void add_matrix(int x[10][10],int y[10][10],int z[10][10],int r,int c) { int i,j; for(i=0;i<r;i++) for(j=0;j<c;j++) z[i][j]=x[i][j]+y[i][j]; } void main() { int a[10][10],b[10][10],c[10][10],ra,ca,rb,cb; clrscr(); printf("Enter order of 2 matrices"); scanf("dd",&ra,&ca,&rb,&cb); if(ra!=rbca!=cb) { printf("addition is not possible"); exit(0); } printf("Enter A\n"); printf("Enter B\n"); read_matrix(a,ra,ca); read_matrix(b,rb,cb); add_matrix(a,b,c,ra,ca); print_matrix(c,ra,ca); getch(); }