Guest_imported
New member
- Jan 1, 1970
- 0
Can you convert an int to a char???? or a long to a char?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include<stdio.h>
void main()
{
int var = 36;
char c;
c = (char)var;
printf("%c",c);
}
output: $