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
Is there a way to switch on strings?
What is the hardest programming language?
What is a class c rental property?
What is difference between union and structure in c?
What is malloc return c?
What tq means in chat?
How to explain the final year project as a fresher please answer with sample project
What does %d do?
What is the use of f in c?
What is type qualifiers?
What are disadvantages of C language.
What is external variable in c?
Why doesnt this code work?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What is spaghetti programming?