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 / ramkumar
1 2 3 4 5 6 7 8 9 10 11 12
| Is This Answer Correct ? | 2 Yes | 15 No |
Post New Answer View All Answers
What are the salient features of c languages?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Explain how can you tell whether a program was compiled using c versus c++?
What is the difference between memcpy and memmove?
What does. int *x[](); means ?
What is sorting in c plus plus?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
How can I ensure that integer arithmetic doesnt overflow?
In C language what is a 'dangling pointer'?
Explain that why C is procedural?
Write a c program to demonstrate character and string constants?
Can the sizeof operator be used to tell the size of an array passed to a function?
Why is %d used in c?
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
What is the use of gets and puts?