3*3 Matrix Multiplication || Question Bank || Bcis Notes

3*3 Matrix Multiplication

This is the very short and easy “C” coding that is used to Printing 3*3 Matrix Multiplication . “printf” is the name of one of the main C output functions, and stands for “print formatted”.


Result


“;”
This is the very important part of any programming language because “;” helps to stop the program limits if you don’t write “;” in your program statement the programming will be wrong.

#include<stdio.h>
#include<stdio. h> is a statement that tells the compiler to insert the contents of stdio at that particular place.
stdio. h is the header file for standard input and output.

printf
In C programming language, printf() function is used to print the “character, string, float, integer, octal and hexadecimal values” onto the output screen. We use printf() function with a %d format specifier to display the value of an integer variable.

void main()
The return type of the function “main” is void, i.e. it does not return anything to the OS. “void” means that you’re not allowed to pass any argument to the main.

{}
The symbols { }, used especially in mathematics and computer programs for showing that things written between them should be considered together.

scanf

In the C programming language, scanf is a function that reads formatted data from stdin (i.e, the standard input stream, which is usually the keyboard, unless redirected) and then writes the results into the arguments given.

Gets

C library function – gets() – The C library function char *gets(char *str) reads a line from stdin and stores it into the string pointed to by str.

you may also like Printing Numbers in Backward

Be the first to comment

Leave a Reply

Your email address will not be published.


*