#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


Please Help Members By Posting Answers For Below Questions

Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.

1803


What does int main () mean?

609


Is swift based on c?

716


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

2376


What is default value of global variable in c?

626






Write a program to implement queue.

723


Explain about block scope in c?

727


disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit

1707


What is c mainly used for?

669


What does sizeof function do?

694


please explain every phase in the "SDLC" in the dotnet.

2249


What is the use of clrscr?

667


Explain how can you check to see whether a symbol is defined?

730


Explain the process of converting a Tree into a Binary Tree.

2200


What is the benefit of using const for declaring constants?

660