Created
April 23, 2019 05:36
-
-
Save Harshapriya123/31407ff1a81671f2ac97c97330fd9b0d to your computer and use it in GitHub Desktop.
How to print the following in c language?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. How to print the following in c language? | |
n=5 | |
o/p | |
0 | |
1 0 | |
2 1 0 | |
3 2 1 0 | |
4 3 2 1 0 | |
2. How to print the following in c language? | |
n=5 | |
2 | |
3 4 | |
4 5 6 | |
5 6 7 8 | |
6 7 8 9 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks kiranbiradar