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
Do array subscripts always start with zero?
Where define directive used?
What does return 1 means in c?
What is ctrl c called?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Why can't I perform arithmetic on a void* pointer?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What is ## preprocessor operator in c?
How to create struct variables?
What are the advantages and disadvantages of c language?
Tell me is null always defined as 0(zero)?
Explain what are global variables and explain how do you declare them?
Where static variables are stored in memory in c?
What is pointers in c?