CDE
This commit is contained in:
parent
518da4a923
commit
764da6cbbb
6144 changed files with 83610 additions and 11 deletions
7
Task/Character-codes/C/character-codes.c
Normal file
7
Task/Character-codes/C/character-codes.c
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("%d\n", 'a'); /* prints "97" */
|
||||
printf("%c\n", 97); /* prints "a"; we don't have to cast because printf is type agnostic */
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue