print the table 5 in loops

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


Please Help Members By Posting Answers For Below Questions

What is build process in c?

643


Do you know pointer in c?

587


When should I declare a function?

621


Why malloc is faster than calloc?

586


How many types of operator or there in c?

599






Write a program to reverse a given number in c?

596


What is meant by type specifiers?

658


What is conio h in c?

622


What are the application of c?

641


Write a program to implement queue.

664


Why is c called c?

620


List out few of the applications that make use of Multilinked Structures?

1288


List the difference between a While & Do While loops?

631


What is difference between Structure and Unions?

634


a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor

635