please see the following code...
why the garbage value for all the variables is same for same data type?
o/p:-
a=-858993460
b=-858993460
c=-858993460
f1=-107374176.00000 0
f2=-107374176.00000 0
why the garbage value for all the variables is same for same data type?
Code:
#include<stdio.h> int main() { int a,b,c; float f1,f2; printf("a=%d\nb=%d\nc=%d\nf1=%f\nf2=%f\n",a,b,c,f1,f2); return 0; }
a=-858993460
b=-858993460
c=-858993460
f1=-107374176.00000 0
f2=-107374176.00000 0
Comment