Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

C program to print the following design

#include<stdio.h> #include<conio.h> void main() { int i,j,k,n; clrscr(); //to clear the screen printf(“How many lines?”); scanf(“%d”,&n); n*=2; for(i=0;i<n;i+=2) { for(j=n-2;j>i;j-=2) printf(” “); for(k=0;k<=i;++k) printf(“*”); printf(“n”); } for(i=0;i<n;i+=2) { for(j=0;j<i;j+=2) printf(” “); for(k=n-1;k>i;–k) printf(“*”); printf(“n”); } getch(); //to stop the screen }

C++ program to print the following design

#include<iostream.h>#include<conio.h> void main(){ clrscr(); //to clear the screen int i,j,k,n; cout<<“How many lines?”; cin>>n; n*=2; for(i=0;i<n;i+=2) { for(j=n-2;j>i;j-=2) cout<<” “; for(k=0;k<=i;++k) cout<<“*”; cout<<“n”; } for(i=0;i<n;i+=2) { for(j=0;j<i;j+=2) cout<<” “; for(k=n-1;k>i;–k) cout<<“*”; cout<<“n”; } getch(); //to stop the screen}

Basic concepts of OOP

The object oriented programming has been developed with a view to overcome the drawbacks of conventional programming approaches. The OOP approach is based on certain concepts that help it attain its goal of overcoming the drawbacks of shortcomings of conventional programming approaches. These general concepts of OOP are given below: Also Read: How to write and …

Basic concepts of OOP Read More »