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 benefits of oop?
How do you achieve runtime polymorphism?
what type of questions
What is debug class?what is trace class? What differences are between them? With examples.
What is the difference between inheritance and polymorphism?
what is difference between class template and template class?
What does and I oop mean in text?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
Can we create object of abstract class?
officer say me - i am offered to a smoking , then what can you say
#include
What is class and object in oops?
What is the real time example of inheritance?
Templates mean
What is new keyword in oops?