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
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Differentiate between full, complete & perfect binary trees.
Are the variables argc and argv are always local to main?
What is #line used for?
What are pointers really good for, anyway?
What is hashing in c?
Write a program which returns the first non repetitive character in the string?
What is define c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Explain what is the difference between a free-standing and a hosted environment?
What is the difference between int main and void main?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
How are strings stored in c?
When should structures be passed by values or by references?