matrix multiplication fails introspect the causes for its
failure and write down the possible reasons for its
failurein c language.
Answer Posted / 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 |
Post New Answer View All Answers
Difference between pass by reference and pass by value?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What are the different types of C instructions?
What is header file in c?
What are extern variables in c?
What is the right type to use for boolean values in c?
Write a program to find factorial of a number using recursive function.
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Explain how can I manipulate strings of multibyte characters?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
How can I list all of the predefined identifiers?
Explain what does the function toupper() do?
What are examples of structures?
What is the purpose of main() function?
Write a c program to build a heap method using Pointer to function and pointer to structure ?