without using arithmatic operator solve which number is
greater??????????
Answer / 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 |
Without using main fn and semicolon,print remainder for a given number in C language
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
What is variables in c?
What is the output of printf("%d", printf("Hello"));?
Explain the difference between structs and unions in c?
What is wrong with this statement? Myname = 'robin';
How can you draw circles in C?
What are the data types present in c?
How can I automatically locate a programs configuration files in the same directory as the executable?
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.