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

A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

1119


Write a program to print numbers from 1 to 100 without using loop in c?

1027


What is multidimensional arrays

1064


Which is better oop or procedural?

988


What language is lisp written in?

1165


Does c have function or method?

942


What does sizeof int return?

1025


What is a structural principle?

1090


What are unions in c?

980


Difference between Function to pointer and pointer to function

1019


Compare and contrast compilers from interpreters.

1074


What is define directive?

1074


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

1016


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

1031


Where is c used?

1034