Write a output for the following c program
#include< main( ) { int x = 6589; char z = '*'; float y = 8888.9935; printf("% -6.1f %3c\n", y, z); printf("% +5d % -3c\n", x, z); } |
---|
Ouput:-
8889.0 _ _ *
+6589 * _ _
#include< main( ) { int x = 6589; char z = '*'; float y = 8888.9935; printf("% -6.1f %3c\n", y, z); printf("% +5d % -3c\n", x, z); } |
---|
© Blogger templates Newspaper III by Ourblogtemplates.com 2008
Back to TOP
0 comments:
Post a Comment