write a program to print largest number of each row of a 2D
array


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?

2 Answers   Patni, TCS,


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

0 Answers  


Why is this loop always executing once?

0 Answers  


When is the “void” keyword used in a function?

1 Answers  


Which is best book for data structures in c?

0 Answers  


program for swapping two strings by using pointers in c language

1 Answers  


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

0 Answers  


How can I avoid the abort, retry, fail messages?

0 Answers  


What are the preprocessors?

9 Answers   HP,


What is spaghetti programming?

0 Answers  


#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }

9 Answers   Burning Glass,


program to print circle structure

1 Answers  


Categories