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
Tell us bitwise shift operators?
What is the best way of making my program efficient?
How can my program discover the complete pathname to the executable from which it was invoked?
Explain heap and queue.
If the size of int data type is two bytes, what is the range of signed int data type?
write a proram to reverse the string using switch case?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What are variables and it what way is it different from constants?
How many levels of indirection in pointers can you have in a single declaration?
Explain how can I manipulate strings of multibyte characters?
What are derived data types in c?
What is a sequential access file?
What is the purpose of & in scanf?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
write a program to find the given number is prime or not