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 is abstraction in oop with example?
What is encapsulation with example?
How do you answer polymorphism?
What are main features of oop?
What does enum stand for?
hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.
Why is polymorphism needed?
Why is polymorphism used?
What are the 4 main oop principles?
Explain the advantages of inheritance.
Can bst contain duplicates?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
What is use of overloading?
write a C++ program for booking using constructor and destructor.
Why do we use oop?