Latest News
Showing posts with label number. Show all posts
Showing posts with label number. Show all posts
gilogo - - structure

Q. Write a C program to print the following number pyramid structure design as: 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5 Ans. /*c program for number p... [...]

gilogo - - to

Please read Operation on Bits and Bitwise Operators and Right/Left Bit Shift Operators if you haven’t already. This post is based on... [...]

gilogo - - vertical

Q. Write a C program to print the following vertical continues number pyramid as:  1  23  4  56  7  89   10 Ans. /*c program for vertical c... [...]

gilogo - - triangle

Q. Write a C program to print the following number pyramid as: 1 1 3 1 3 5 1 3 5 7 1 3 5 7 9 Ans. /*c program for odd number triangle*/ #in... [...]

gilogo - - triangle

Q. Write a C program to print the following positive-negative number triangle as: 9 8  6 7  5  3 4  2  0 -2 1 -1 -3 -5 -7 Ans. /*c program ... [...]