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...

Input any no. and print all the the numbers that comes
before it like this
for e.g input = 4
0
01
012
0123
01234
plz answer it 2day

Answer Posted / abc

void main()
{
int n,i,j;
printf("enter the number");
scanf("%d",&n);
for(i=0;i<=n;i++)
{
for(j=0;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different file extensions involved when programming in C?

1240


how to write optimum code to divide a 50 digit number with a 25 digit number??

3258


What is masking?

1138


What is the use of header files?

1089


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

1121


Mention four important string handling functions in c languages .

1082


Do you have any idea how to compare array with pointer in c?

1038


What is #ifdef ? What is its application?

1094


What is the use of the function in c?

1007


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

1105


any "C" function by default returns an a) int value b) float value c) char value d) a & b

1073


How can you tell whether a program was compiled using c versus c++?

1092


How can I invoke another program or command and trap its output?

1086


What is a header file?

1071


List out few of the applications that make use of Multilinked Structures?

2180