#include <stdio.h> #define ROWS 3 #define COLS 3 void matrixMultiply(int *mat1, int *mat2, int *result, int rows1, int cols1, int cols2) { int i, j, k; // Multiplying matrices for (i = 0; i < rows1; i++) { for (j = 0; j < cols2; j++) { *(result + i * cols2 + j) = 0; for (k = 0; k < cols1; k++) { *(result + i * cols2 + j) += *(mat1 + i * cols1 + k) * *(mat2 + k * cols2 + j); } } } } void displayMatrix(int *mat, int rows, int cols) { int i, j; // Displaying matrix for (i = 0; i < rows; i++) { for (j = 0; j < cols; j++) { printf("%d\t", *(mat + i * cols + j)); } printf("\n"); } } int main() { int mat1[ROWS][COLS] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; int mat2[ROWS][COLS] = {{9, 8, 7}, {6, 5, 4}, {
27 October History: The world got sewing machine on this day, India gave 'Agni test' for missile power
Trending News: 27 अक्टूबर को इतिहास के चश्मे से देखें तो यह दिन कई मायनों में खास है. एकतरफ दुनिया को जहां आज ही के दिन मशीन जैसी चीज मिली थी तो भारत ने अग्नि-5 मिसाइल का परीक्षण भी आज ही किया था. Trending News: If you look at the prism of history on October 27, then this day is special in many ways. On one hand, where the world got a machine-like thing on this day, India had also tested Agni-5 missile today. 27 अक्टूबर ऐतिहासिक घटनाएँ: अक्टूबर का महीना खत्म होने की कगार पर है और नवंबर दस्तक देने वाला है। अक्टूबर आमतौर पर कई त्योहारों का गवाह बनता है, लेकिन इतिहास के नजरिए से देखा जाए तो यह महीना कई मायनों में खास है। अगर 27 अक्टूबर की बात करें तो इस दिन के अंदर भी कई इतिहास हैं। आइए जानते हैं कुछ ऐसे ही अहम पलों के बारे में जो आस से जुड़े हैं। 27 October Historical Events: The month of October is on the verge of ending and November is about to knock. October usually witnesses many festivals, but even if seen through the prism of history, this month is special in many ways. If we ta