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

write a program whose output will be-
1
12
123
1234

Answer Posted / tanish kumar

#include <iostream.h>
#include <conio.h>
void main()
{
clrscr ();
int i, j, n;
cout <<"Enter the value of n=";
cin>>n;
for (i=1;i <=n;i++)
{
for (j=1;j <=i;j++)
{
cout <<j <<" ";
}
cout <<endl;
}
getch ();
}

Is This Answer Correct ?    2 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is array name a pointer?

1022


Explain the use of 'auto' keyword

1113


Why do we need functions in c?

1004


Explain what are the different data types in c?

1202


How to delete a node from linked list w/o using collectons?

2767


How can I write a function that takes a format string and a variable number of arguments?

1033


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

1087


What does s c mean on snapchat?

1090


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

2074


What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?

1413


Are bit fields portable?

1146


What is null pointer constant?

1133


Write a program to swap two numbers without using third variable in c?

1118


What is a macro in c preprocessor?

1087


What does 4d mean in c?

1481