Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

What are pointers in C? Give an example where to illustrate their significance.

1190


How can you read a directory in a C program?

1110


What does c mean before a date?

1140


Should I learn c before c++?

1192


Differentiate call by value and call by reference?

933


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

1078


What are terms in math?

1002


What is realloc in c?

1043


What is the benefit of using an enum rather than a #define constant?

1195


How can you allocate arrays or structures bigger than 64K?

1101


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6231


Can a pointer be null?

993


What is the code for 3 questions and answer check in VisualBasic.Net?

2126


What are different storage class specifiers in c?

1065


Explain how do you print only part of a string?

1177