0
Como programo en c , imprimir los números secuenciales de entre x e y, por ejemplo : si x=3 y Y=7 imprime 3 4 5 6 7
Lenguaje c
2 Antworten
+ 3
I didn't understood your question write in English language may be u expecting this Outputs 3 4 5 6 
I tried
#include <stdio.h>
int main() {
     
     int y=7;
    for(int x=3;x<y;x++)
       printf(" %d ",x);     
    return 0;
}
0
Gracias



