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 / 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 |
in iso what are the common technological language?
What is the difference between union and anonymous union?
What are keywords in c with examples?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
How do you do dynamic memory allocation in C applications?
where do we use structure pointer?
Explain what header files do I need in order to define the standard library functions I use?
code for find determinent of amatrix
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
Why do we write return 0 in c?
How to find the usage of memory in a c program