matrix multiplication fails introspect the causes for its
failure and write down the possible reasons for its
failurein c language.
Answers were Sorted based on User's Feedback
Answer / praveen
One reason could be
when the number of rows is not equal to number of coloumns
| Is This Answer Correct ? | 28 Yes | 7 No |
Answer / vijay dave
Reeason is there to first matrix`s row number is not
equal to second matrix`s columns number
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / sandeep
one reason is there to first matrix`s row number is not
equal to second matrix`s columns number
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / prabhat thapa
The main reason is number of columns in first matrix not being equal with number of rows in second matrix.
(A i*j)* B(j*k)
| Is This Answer Correct ? | 2 Yes | 0 No |
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What is wild pointer in c?
how to count no of words,characters,lines in a paragraph.
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
explain how do you use macro?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
Can a pointer be null?
Explain the difference between struct and union.
Why does everyone say not to use scanf? What should I use instead?
Where are some collections of useful code fragments and examples?
program to convert a integer to string in c language'