do ne body have any idea about the salary for the we r going
to have interview.
yup .. u got it right ..i m talking abt NIC.
Answer Posted / manojbatra071
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,r,c,a[10][10],b[10]][10],c[10][10],k;
clrscr();
printf("enter the size of array");
scanf("%d%d",&r,&c);
for(i=0;i<r;i++)
{
for(j=0;j<c;j++)
scanf("%d",a[i][j]);
}
printf("enter elements of 2nd matrix");
for(i=0;i<r;i++)
{
for(j=0;j<c;j++)
scanf("%d",&b[i][j]);
}
for(i=0;i,r;i++)
{
for(k=0;k<r;k++)
{
for(j=0;j<r;j++)
c[i][k]=c[i][k]+a[i][j]*b[j][k];
}
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
what are non standard function in c
What is meant by operator precedence?
What is difference between union All statement and Union?
What is wrong with this initialization?
Why is c not oop?
What are the preprocessor categories?
Write a program to reverse a string.
Is javascript based on c?
For what purpose null pointer used?
What functions are used for dynamic memory allocation in c language?
What is volatile c?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
How do you generate random numbers in C?
What is bss in c?