Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
day 2
#include <stdio.h> #define SIZE 10 int main () { //char is 8 bits wide char myString[SIZE]; fgets(myString, SIZE, stdin); printf("%s \n", myString); myString[3] = 0; printf("%s", myString); /* //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
4 mejorado trabajo semanal 4
this
Intro coding hello world
Instruction order in C/C++
C code to compare two texts in form of array of chars ignoring the capitalization
Deadlock
K&R/1_5
Project 3 Part 1 v1.5
Lior Yehieli Lesson
Area & Perimeter of Circle