How do we select the big element or any other operation
from array which is read dynamically. user need to give the
elements only no need to mention the size.
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate Source Codes from Object Codes
How can I do serial ("comm") port I/O?
What is sizeof array in c?
write a program to display reverse of a number using for loop?
What is scope rule of function in c?
What is a union?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
Why is structure important for a child?
What does c value mean?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
How can I read data from data files with particular formats?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }