#include <stdio.h> main(){ char firstInitial; firstInitial= 'S'; printf("The value of firstInitial is %c", firstInitial); }
The value of firstInitial is S