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
object-oriented C by Henry Kroll III www.thenerdshow.com
150109_RecursividadPrimo
Test 3
18BCE2182 ASSESS_2 Q-1
print_odd_pointer.c
first C code
Project 5 v0.11
C141105_SwitchNotas
Thread and Mutex Code
Goodone tricky