Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Program to print 0 to 9 in cross order

Answer Posted / kalyan chukka

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,j;
clrscr();
for(i=0;i<=9;i++)
{
for(j=1;j<=i;j++)
{
printf(" ");
}
printf("%d\n ",i);
}
getch();
}


Check in windows Environment

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is polymorphism what are the different types of polymorphism?

1065


Write a program to reverse a string using recursive function?

2409


What is class and object in oops?

1213


What is polymorphism what is it for and how is it used?

1058


Is html an oop?

1125


What is the advantage of oop over procedural language?

1129


What are the advantages of polymorphism?

1082


What is abstraction in oop with example?

1189


What is a function in oop?

1136


Write a program to sort the number with different sorts in one program ??

2430


What makes a language oop?

1127


How do you answer polymorphism?

1108


What is overloading and its types?

1248


What is overriding in oops?

1155


What is polymorphism and its types?

1127