Search

Theseus

Is it possible to declare character variable using int?



Source Code
#include <stdio.h>

int main()
{
int nA = 'a';

printf("%c \n",nA);

return 0;
}

Review
It is possible to declare character variable using int

No comments:

Post a Comment