Assume that c is a char variable that has been declared and already given a value. Write an expression whose value is 1 if and only if c is a space character.
Answer 1)
#include <stdio.h>
int main()
{
char c = ' ';
if (c == ' ')
printf("The value is TRUE when character is space\n");
else
printf("The value is FALSE when character is space\n");
}
Assume that c is a char variable that has been declared and already given a value....