Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- /////////////////////////////////////////////////
- int main()
- {
- char cn = 123;
- for(int i = 0; i < 10; i++)
- {
- printf("%5d\n", cn);
- cn++;
- }
- }
- // for (char i =-123; i<-1; i--)
- // {
- // printf("%d\n", i);
- // }
- /*
- #include <stdio.h>
- ////////////////////////////////////////////
- int main ()
- {
- char cn = 123;
- for(int i = 0; i < 11; i++)
- {
- printf("%4d\n", cn);
- cn ++;
- }
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement