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 is a stream water?
Differentiate between static and dynamic modeling.
What do you mean by command line argument?
what are enumerations in C
What are the keywords in c?
What is sizeof int?
Is int a keyword in c?
When is the “void” keyword used in a function?
Why static is used in c?
what is different between auto and local static? why should we use local static?
What is the purpose of main( ) in c language?
How can I copy just a portion of a string?
What are nested functions in c?
Explain how to reverse singly link list.
What is int main () in c?