0
Its show no output. Why?
#include <stdio.h> int main() { int x; float num; char text[20]; scanf("%d %f %s", &x, &num, text); }
1 Réponse
+ 4
You need to print your values to get an output.
https://www.sololearn.com/learn/C/2914/?ref=app
#include <stdio.h> int main() { int x; float num; char text[20]; scanf("%d %f %s", &x, &num, text); }