without using arithmatic operator solve which number is
greater??????????
Answer Posted / niranjan vg
use relational operator
(a > b)
this is not a arithematic operator.
or you can use conditional operator
(a>b)?a:b;
Is This Answer Correct ? | 25 Yes | 3 No |
Post New Answer View All Answers
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Explain how can a program be made to print the name of a source file where an error occurs?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the best way to store flag values in a program?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Which one would you prefer - a macro or a function?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Where is volatile variable stored?
Which is better oop or procedural?
What is a function in c?
What is the value of c?
Where are c variables stored in memory?
What is pass by reference in c?
c program to compute AREA under integral
What are enumerated types?