0
How to print auto variable in C
#include <stdio.h> int main() { auto x=2.3; auto y=22; printf ("%f",x); return 0; }
3 Respostas
0
the outout of this code isn't 2.3
0
the output
0
Nice one 💪
#include <stdio.h> int main() { auto x=2.3; auto y=22; printf ("%f",x); return 0; }