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 / shaik shafi

#include<stdio.h>
#include<conio.h>
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 ?    6 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Add Two Numbers Without Using the Addition Operator

818


Write a program to reverse a given number in c language?

1110


How can I find the modification date and time of a file?

1081


When should we use pointers in a c program?

1130


Explain data types & how many data types supported by c?

1082


why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???

1964


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

1267


What is array of pointers to string?

1061


Explain how can I manipulate strings of multibyte characters?

1197


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

1097


Why c is called procedure oriented language?

1038


What is a ternary operator in c?

1119


What is the value of c?

1061


What is the use of ?

1035


Discuss the function of conditional operator, size of operator and comma operator with examples.

1157