Write a output for the following c program?
mani( ) { int a = 1235, b = -1888; float x = 2233.44, y = 4455.66; printf("% -6d % -6d\n", a, b); printf("% -8.2f % -10.1f\n", x, y); } |
---|
Output:-
1235_ _-1888_
2233.44_ 4455.7_ _ _ _
mani( ) { int a = 1235, b = -1888; float x = 2233.44, y = 4455.66; printf("% -6d % -6d\n", a, b); printf("% -8.2f % -10.1f\n", x, y); } |
---|
© Blogger templates Newspaper III by Ourblogtemplates.com 2008
Back to TOP
0 comments:
Post a Comment