#include <stdio.h>
int main(){
float a = 0.7;
if(a < 0.7)
printf("C");
else
printf("C++");
return 0;
}
Its giving the output "C". Please explain how ?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
|||||
|
<is a relational operator. – Jeff Mercado Jun 1 '11 at 7:11