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
Is null always defined as 0(zero)?
How are pointers declared in c?
Which is better pointer or array?
what is dangling pointer?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
Write a c program to demonstrate Type casting in c?
Why static is used in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Explain is it valid to address one element beyond the end of an array?
Why doesn't C support function overloading?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above