0
Write a program in c to find the symbol for the ASCII code 36.
I know to solve the character one but how to solve this one please do tell me!
5 odpowiedzi
0
#include <stdio.h>
int main ()
{
int a=36;
printf("ASCII symbol of a is %c",a);
return 0;
}
+ 1
Its simple just u need to do reverse if u know how to change char to int then int to char is also easy u just need to change data types and format specifiers nothing else or simply you can do type casting
+ 1
Or-
#include <stdio.h>
int main()
{
printf ("%c",36);
return 0;
}
0
printf("%c",36);
0
Hjk