Write a output for the following in 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