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
Why is c platform dependent?
Which one would you prefer - a macro or a function?
How can you determine the size of an allocated portion of memory?
what is use of malloc and calloc?
Why functions are used in c?
What are the types of operators in c?
How do you determine whether to use a stream function or a low-level function?
Why do we use main function?
Is there a way to compare two structure variables?
What is the use of sizeof () in c?
Why do some versions of toupper act strangely if given an upper-case letter?
Why do we use return in c?
How will you find a duplicate number in a array without negating the nos ?
Why is extern used in c?
How can I dynamically allocate arrays?