Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
LECTURA DE CADENAS CON FGETS
#include <stdio.h> #include <string.h> #include <stdlib.h> void limpiar (char *cadena); int main(void) { unsigned short longitud; scanf("%hu\n", &longitud);// sin el \n en fgets toma el enter. char texto[longitud + 1]; int i; // Lectura de cadena fgets(texto,longitud,stdin); void limpiar (texto); printf("\ntexto: %s y longitud: %d\n",texto, strlen(texto)); for (i = 0 ; texto[i] ; i++){ printf("%c", texto[i]); } return 0; } void limpiar (char *cadena) { char *caracter; caracter = strchr(cadena,'\n'); *caracter = '\0'; }
run
|
edit
|
history
|
help
0
1.8 Parallizing for loop
SortedMerge
Project 3 part 2 Book v10.2
Lior Yehieli Lesson
algo de avance
18BCE2182 MIDTERM PART-B CRITICAL
Ascii contrasena segura
In Class 1.23.17 Bit operations
Float data type.c
sizeof human