#define MAX 3
main()
{
printf("MAX = %d \n",MAX );
#undef MAX
#ifdef MAX
printf("Vector Instituteā);
#endif
Answer Posted / shaik anif
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);
}
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
What is difference between structure and union in c programming?
Write a program of advanced Fibonacci series.
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
How can a program be made to print the line number where an error occurs?
Is c is a middle level language?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is a shell structure examples?
What is the difference between variable declaration and variable definition in c?
What is c++ used for today?
What is the scope of global variable in c?
What is a constant?
number of times a digit is present in a number
What is the collection of communication lines and routers called?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Explain goto?