0
In c program Vowel I want to put asciii numbers then what output is print
3 ответов
0
Didn't understand what you mean. Please explain.
0
G'day mahesh pandhare I think you are asking how to print using ASCii numbers, right?
You can use printf() to print string literals by having them inside double quotes.
You can also use format specifiers for variable arguments,
%d for integer type
%f for floating point decimals
%c for single character
%s for array of characters (like string in other languages)
You could type:
printf("%c",65); // output is letter A
https://code.sololearn.com/c0Hc3USj6mXe/?ref=app
0
ASCIII Numbers Which Data Type