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 programming in c language,
1
3 5
7 9 11

Answer Posted / rehan

void main()
{
int i,j,k;
clrscr();
k=1;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d ",k);
k=k+2;
}
printf("\n\n");
}
getch();
}

Is This Answer Correct ?    2 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there any possibility to create customized header file with c programming language?

1067


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

1067


What is context in c?

929


What are actual arguments?

1106


Find MAXIMUM of three distinct integers using a single C statement

1071


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

2333


Explain is it valid to address one element beyond the end of an array?

1225


I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.

2373


What does typeof return in c?

1106


What is malloc() function?

1173


What are formal parameters?

1129


All technical questions

1998


Is fortran still used in 2018?

1043


Is array a primitive data type in c?

1078


What is the use of sizeof?

1022