print the table 5 in loops

Answer Posted / mazahar

#include<stdio.h>
main()
{
int i,n=5;
for(i=0;i<=10;i++)
printf("%d*%d=%d",n,i,n*i);
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why does not c have an exponentiation operator?

626


What is the sizeof () operator?

622


Why c is called a middle level language?

634


Write a function that will take in a phone number and output all possible alphabetical combinations

594


What is unsigned int in c?

551






What is the difference between void main and main in c?

621


Write a program to reverse a linked list in c.

639


What's the difference between constant char *p and char * constant p?

651


When is a “switch” statement preferable over an “if” statement?

643


What is the process to generate random numbers in c programming language?

606


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

637


What is the use of c language in real life?

527


What is the modulus operator?

731


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2330


What is hashing in c?

638