Posts by Kartds • 1 point
1 post
-
-2
votes1
answer34
viewsQ: Make a code that reads a text and shows without vowels. The code cannot use functions
#include<stdio.h> #include<conio.h> main() { char texto[41]; int n,i; printf("Entre com um texto\n"); gets(texto); for(n=0;texto[n]!='\0';n++); i=0; while(texto[i]!='\0') { if…