Relational Operators Symbol

#include <stdio.h>
void main ()
{
int =. 7 A, B =. 8, C =. 9, m; // declare four integer variables a, b, c, m, and initializes variables for the first three assignment //
char n = 'a'; // declare a character variable n, and n is initialized assigned to 'a' //
m = a> b; // relational expression a> b, the value assigned to the variable m //
the printf ( "% D,", a c ==> b); // // output via the terminal b of the expression values of c a ==>
n-the printf ( "% D,",> = 'a' -32); // // output terminal by the value of the expression n> = 'a'-32 of
printf ( "% d,", b-1 == a = c);! // output terminal by expressing ! formula b-1 == a = the value of c //
the printf ( "% D \ n-", 0 <= m> = 23); // value of the output terminal 23 by the expression 0 <= m> = / /
}

Guess you like

Origin www.cnblogs.com/zhangdemingQ/p/12046412.html