-
Notifications
You must be signed in to change notification settings - Fork 0
/
practice1.c
156 lines (142 loc) · 3.32 KB
/
practice1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*#include<stdio.h>
int main()
{
int arr[10]={10,15,17,9,18,11,21,23,6,19},n=10,odd=0,even=0;
for(int i=0;i<10;i++)
{
if(arr[i]%2==1)
odd++;
else
even++;
}
printf("Odd numbers:%d\n",odd);
printf("Even numbers:%d\n",even);
return 0;
}*/
/*#include <stdio.h>
int main()
{
int n, i, largest_num;
printf("\n Enter the size of the array: ");
scanf("%d", &n);
int arr[n];
printf("\n Enter %d elements of the array: \n", n);
for (i = 0; i < n; i++)
{
scanf("%d", &arr[i]);
}
largest_num = arr[0];
for (i = 1; i < n; i++)
{
if (largest_num < arr[i])
largest_num = arr[i];
}
printf("largest element in the array is : %d\n", largest_num);
return 0;
}*/
/*#include <stdio.h>
void main ()
{
int arr[100];
int i, j, a, n;
printf("enter size of array\n");
scanf("%d", &n);
printf("Enter the elements\n");
for (i=0;i<n;++i)
{
scanf("%d",&arr[i]);
}
for (i=0;i<n;++i)
{
for (j=i+1;j< n;++j)
{
if (arr[i]>arr[j])
{
a=arr[i];
arr[i]=arr[j];
arr[j]=a;
}
}
}
printf("sorted elements are:\n");
for (i = 0; i < n; ++i){
printf("%d\n", arr[i]);
}
}*/
/*#include<stdio.h>
void main()
{
int a[10][10],i,j,k,row,col,b[10][10],c[10][10];
printf("Enter the no. of rows and columns");
scanf("%d%d",&row,&col);
printf("Enter the values of 1st matrix:\n");
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
scanf("%d",&a[i][j]);
}
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{
printf("%d\t",a[i][j]);
}
printf("\n");
}
}*/
#include<stdio.h>
void main()
{
int a[10][10],i,j,k,row,col,b[10][10],c[10][10];
printf("Enter the no. of rows and columns");
scanf("%d%d",&row,&col);
printf("Enter the values of 1st matrix:\n");
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
printf("Enter the elements:");
scanf("%d",&a[i][j]);
}
printf("Enter the values of 2nd matrix:\n");
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
printf("Enter the elements:");
scanf("%d",&b[i][j]);
}
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
c[i][j]=a[i][j]+b[i][j];
}
printf("Sum of two matrices:\n");
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
printf("%d\t",c[i][j]);
if(j==col-1)
{
printf("\n");
}
}
}
/*#include<stdio.h>
void main()
{
int a[10][10],i,j,k,row,col,b[10][10],c[10][10];
printf("Enter the no. of rows and columns");
scanf("%d%d",&row,&col);
printf("Enter the values of 1st matrix:\n");
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
printf("Enter the elements:");
scanf("%d",&a[i][j]);
}
printf("Enter the values of 2nd matrix:\n");
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
printf("Enter the elements:");
scanf("%d",&b[i][j]);
}*/