edited by
332 views

1 Answer

0 votes
0 votes

It do return integer, which is ASCII value of given input( say c = 99 ,ascii value) but %c reads and converts back to characters corresponding to ASCII value.

Related questions

0 votes
0 votes
1 answer
1
go_editor asked Jul 11, 2016
2,372 views
Which of the following mode declaration used in C++ to open a file for input?ios : : appin : : iosios : : fileios : : in
1 votes
1 votes
1 answer
2
Hira Thakur asked Jun 23, 2017
1,364 views
what is difference between getc() getch(), getche(),getchar()???is getc() and getchar() is same???
2 votes
2 votes
1 answer
3
rupamsardar asked Aug 30, 2023
481 views
#include <stdio.h int f(int x) { if(x%2==0) { return f(f(x-1)); } else return (x++); } int main() { printf("%d",f(12)); ret...