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
What does void main () mean?
How do you print only part of a string?
Differentiate between the = symbol and == symbol?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
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?
two variables are added answer is stored on not for third variable how it is possible?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
Is c call by value?
Is there sort function in c?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit