0
Can someone example for me why am getting alphabets as output
#include<stdio.h> int main() { for(int i=65;i<=90;i++) { printf("%c\n",i); } return 0;
4 Respostas
+ 2
Bucz you given c% that's why you got it
+ 2
The mapping between numbers and characters is defined in ASCII [http://www.asciitable.com] and likewise in the newer Unicode [https://unicode-table.com]
+ 1
Give it as the %d
+ 1
You will get it num