matrix multiplication fails introspect the causes for its
failure and write down the possible reasons for its
failurein c language.
Answer Posted / 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 |
Post New Answer View All Answers
What is const keyword in c?
What is signed and unsigned?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is the stack in c?
how can I convert a string to a number?
What are the modifiers available in c programming language?
What is sizeof array in c?
Can you return null in c?
How do you declare a variable that will hold string values?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Process by which one bit pattern in to another by bit wise operation is?
What is far pointer in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why & is used in scanf in c?