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
Why is destructor used?
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
what are the different types of qualifier in java?
what are the ways in which a constructors can be called?
Why do we use polymorphism in oops?
Why do we use polymorphism?
What is basic concept of oop?
#include
What is object and example?
How to hide the base class functionality in Inheritance?
Why interface is used?
What is the point of oop?
Can we have inheritance without polymorphism?
What are classes oop?
What is class in oop with example?