matrix multiplication fails introspect the causes for its
failure and write down the possible reasons for its
failurein c language.
Answer Posted / 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 |
Post New Answer View All Answers
Which header file is essential for using strcmp function?
I need testPalindrome and removeSpace
#include
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
#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); }
What is scope rule in c?
what will be maximum number of comparisons when number of elements are given?
What is queue in c?
How can I find the modification date and time of a file?
What is the modulus operator?
What is the difference between text and binary i/o?
what is ur strangth & weekness
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
How can you increase the size of a dynamically allocated array?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Which of these functions is safer to use : fgets(), gets()? Why?