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
I have seen function declarations that look like this
why programs in c are running with out #include
Is array a primitive data type in c?
What is the use of function in c?
Explain what is output redirection?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Explain threaded binary trees?
How is a null pointer different from a dangling pointer?
Do you know the use of 'auto' keyword?
What are pointers?
What are the advantage of c language?
What is cohesion and coupling in c?
Write a program to print "hello world" without using a semicolon?
In a switch statement, what will happen if a break statement is omitted?
Which is more efficient, a switch statement or an if else chain?