Answer Posted / tushar patil
#include<stdio.h>
#include<conio.h>
main()
{
int a=5,i;
printf("TABLE OF 5");
printf("
");
for(i=1;i<=10;i++)
{
printf("%d ",i*a);
}
getch();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
`write a program to display the recomended action depends on a color of trafic light using nested if statments
How can I do peek and poke in c?
What is clrscr in c?
Can stdout be forced to print somewhere other than the screen?
What is this pointer in c plus plus?
Is sizeof a keyword in c?
What are the types of type specifiers?
What is volatile variable how do you declare it?
what are enumerations in C
Explain the difference between structs and unions in c?
regarding pointers concept
How can I sort a linked list?
What is 2c dna?
Tell us two differences between new () and malloc ()?
Explain Function Pointer?