Answer Posted / kiran
{
int n = 5;
for(i=1;i<=10;i++)
printf("
%d x %d = %d",n,i,n*i);
}
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How can I write a function analogous to scanf?
what is the significance of static storage class specifier?
What are the two types of functions in c?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Can a pointer be null?
Which is best linux os?
What is the use of header?
Is it better to use a macro or a function?
What is a program flowchart and how does it help in writing a program?
How can I do serial ("comm") port I/O?
explain what is an endless loop?
What is the explanation for prototype function in c?
What is graph in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.