Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
data types and printf
#include <stdio.h> int main () { //char is 8 bits wide char ch; //int is 32 bits wide int num; for( ch = 75 ; ch <= 100; ch++ ) { printf("ASCII value = %d, Character = %c\n", ch , ch ); } for( num = 75 ; num <= 100; num++ ) { printf("ASCII value = %d, Character = %c\n", num, num); } return(0); }
run
|
edit
|
history
|
help
0
18BCE2182 MIDTERM QUES-2
Assignment 4 v3
child process
time conversion1
selection sort
Assignment 3 Final
150116_FactorialPrimo
ponyerb orange panther
json formatter
Card shuffling and dealing program using structures