/* Use data type: char */
#include <stdio.h>
void main()
{
char first = 'A';
char second = 'B';
char last = 'Z';
char number = 40;
char ex1 = first + 2; /* Add 2 to char */
char ex2 = second - 1; /* Subtract 1 from char*/
char ex3 = last + 2; /* Add 2 to char */
printf(" Character values %-5c%-5c%-5c", ex1, ex2, ex3);
printf("\n Numerical equivalents value for above chars %-5d%-5d%-5d", ex1, ex2, ex3);
printf("\nThe number %d is the code for the character %c\n", number, number);
}
|