Print the pyramid using c language

6 years ago
USING C LANGUAGE PRINT THE PYRAMID C language code to display the pattern: #include<stdio.h> #include<conio.h> void main() { int noofrows,rows,col1,col2,noofcols; clrscr(); printf ("Enter the number: "); scanf ("%d",&noofrows); noofcols=noofrows-1; for(rows=1;rows<=noofrows;rows++)  ...
Print the pyramid using c language Print the pyramid using c language Reviewed by Amit Waghmare on December 10, 2018 Rating: 5

c language code to print fibonacci series

6 years ago
C LANGUAGE CODE TO PRINT FIBONACCI SERIES Introduction                                                 Fibonacci series means if we are giving input as 7 then the output is 0  1 ...
c language code to print fibonacci series c language code to print fibonacci series Reviewed by Amit Waghmare on December 09, 2018 Rating: 5
Page 1 of 81238Next