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 / ck

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

Is This Answer Correct ?    4 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where register variables are stored in c?

930


What is omp_num_threads?

1052


What is getch() function?

1027


What are the functions to open and close the file in c language?

1008


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

1912


What is the use of getchar functions?

1152


What are reserved words?

1063


How do I get a null pointer in my programs?

1078


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

2067


Is array name a pointer?

1010


Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?

1070


Explain continue keyword in c

983


What is a structure in c language. how to initialise a structure in c?

1033


What is restrict keyword in c?

1068


write a progrmm in c language take user interface generate table using for loop?

2012