#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
Can a void pointer point to a function?
How many bytes is a struct in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
how could explain about job profile
Does c have class?
What are the scope of static variables?
For what purpose null pointer used?
Explain what are its uses in c programming?
What is the difference between call by value and call by reference in c?
Explain how do you list files in a directory?
What is linear search?
What is difference between && and & in c?
What is a c token and types of c tokens?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What are the different types of C instructions?