Anik_Akash

A to Z Print

Nov 18th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3.  
  4. {
  5.  
  6.     int i=65;
  7.     for(i=65; i<=90; i++)
  8.     {
  9.         printf("%c\n",i);
  10.     }
  11.  
  12.     return 0;
  13. }
  14.  
Add Comment
Please, Sign In to add comment