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

When should a type cast not be used?

0 Answers  


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


Explain the advantages and disadvantages of macros.

0 Answers   TCS,


To find whether a number is even or odd without using any conditional operator??

12 Answers   College School Exams Tests, IBM,


What is a program flowchart and how does it help in writing a program?

0 Answers  






Explain what does a function declared as pascal do differently?

0 Answers  


How many types of errors are there in c language? Explain

0 Answers  


Write a program to check whether a number is prime or not using c?

0 Answers  


design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.

2 Answers  


How can my program discover the complete pathname to the executable from which it was invoked?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


how to add two numbers without using arithmetic operators?

4 Answers  


Categories