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
What are pointers in C? Give an example where to illustrate their significance.
How can you read a directory in a C program?
What does c mean before a date?
Should I learn c before c++?
Differentiate call by value and call by reference?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are terms in math?
What is realloc in c?
What is the benefit of using an enum rather than a #define constant?
How can you allocate arrays or structures bigger than 64K?
#include
Can a pointer be null?
What is the code for 3 questions and answer check in VisualBasic.Net?
What are different storage class specifiers in c?
Explain how do you print only part of a string?