Run Code
|
API
|
Code Wall
|
Users
|
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
Please
log in
to post a comment.
18BCE2182 ASSESS_3 Q2
Adding sums of two 1-D arrays
bit wise operation
sume of diagonal v.1
18BCE2182 ASSESS_1 Q1-2
upper case letter.c
Project 3 Part 1 v1.2
20171117_PITAGORAS
HeapSort
pointer1
Please log in to post a comment.