write a programming in c language,
1
3 5
7 9 11
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
What is the purpose of macro in C language?
Explain what is the heap?
What is c language in simple words?
can you change name of main()?how?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
User define function contain thier own address or not.
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
What is a structure in c language. how to initialise a structure in c?
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
what does keyword ‘extern’ mean in a function declaration?
What are the advantages of c preprocessor?
where can function pointers be used?