Answer Posted / md.ekramul kabir
#include<stdio.h>
void main(void)
{
int row=0,column=0;
int data[4][4];
for(row=0;row<=3;row++)
{
for(column=0;column<=3;column++)
{
scanf("%d",&data[row][column]);
}
}
printf("\nYour Matrix is : \n");
for(row=0;row<=3;row++)
{
for(column=0;column<=3;column++)
{
printf("%d\t",data[row][column]);
}
printf("\n");
}
}
Is This Answer Correct ? | 13 Yes | 30 No |
Post New Answer View All Answers
What are the important components of cohesion?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
What is the main feature of oop?
Why is encapsulation used?
What is for loop and its syntax?
Why is object oriented programming so hard?
What is use of overloading?
Can we override main method?
What is methods in oop?
Write a program to sort the number with different sorts in one program ??
What is difference between inheritance and polymorphism?
What is polymorphism what is it for and how is it used?
What is a class oop?
What is the oops and benefits of oops programming?
Why is oop useful?