matrix multiplication fails introspect the causes for its
failure and write down the possible reasons for its
failurein c language.
Answer Posted / 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 |
Post New Answer View All Answers
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Explain null pointer.
Why is c called a mid-level programming language?
how can use subset in c program and give more example
What is the use of static variable in c?
What is volatile c?
How can I access an I o board directly?
Is boolean a datatype in c?
What are type modifiers in c?
What is the method to save data in stack data structure type?
Explain heap and queue.
Write the control statements in C language
What is difference between class and structure?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA