main()
{
int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ;
int i, j , k=99 ;
for(i=0;i<3;i++)
for(j=0;j<4;j++)
if(a[i][j] < k) k = a[i][j];
printf("%d", k);
}
Answer Posted / sudeshna
12
| Is This Answer Correct ? | 8 Yes | 18 No |
Post New Answer View All Answers
What is the purpose of scanf() and printf() functions?
Is this program statement valid? INT = 10.50;
What is the difference between scanf and fscanf?
What the advantages of using Unions?
What are the key features in c programming language?
Which is the best website to learn c programming?
What is the use of pointers in C?
With the help of using classes, write a program to add two numbers.
What does s c mean on snapchat?
What is a 'null pointer assignment' error?
Write a function that will take in a phone number and output all possible alphabetical combinations
Between macros and functions,which is better to use and why?
Can 'this' pointer by used in the constructor?
What is an endless loop?
What is array of pointers to string?