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
In C, What is the #line used for?
What is double pointer?
Why do we use int main instead of void main in c?
find the sum of two matrices and WAP for it.
Write a c program to build a heap method using Pointer to function and pointer to structure ?
For what purpose null pointer used?
Can you please explain the difference between malloc() and calloc() function?
What are pointers? Why are they used?
Why use int main instead of void main?
Why main is not a keyword in c?
If I have a char * variable pointing to the name of a function ..
What are the rules for the identifier?
How does pointer work in c?
Can you subtract pointers from each other? Why would you?
In C language, a variable name cannot contain?