Find greatest number out of 10 number without using loop.
Answer Posted / joshi
/* for same qustion this */
void main()
{
int a,b;
clrscr();
printf (enter the two number :);
scanf("%d%d",a,b);
if (a>b)
printf ("%d\n greater number",a);
else
printf ("%d\n greter number",b);
getch();
}
| Is This Answer Correct ? | 11 Yes | 48 No |
Post New Answer View All Answers
Can we assign integer value to char in c?
Why does the call char scanf work?
Explain what is the purpose of "extern" keyword in a function declaration?
How important is structure in life?
diff between exptected result and requirement?
How can I open files mentioned on the command line, and parse option flags?
Which programming language is best for getting job 2020?
What are pointers? What are stacks and queues?
Is main a keyword in c?
Can we change the value of static variable in c?
how many key words availabel in c a) 28 b) 31 c) 32
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What is the difference between procedural and declarative language?
What is the difference between array_name and &array_name?
What does *p++ do?