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
Why pointers are used?
What is volatile keyword in c?
What is extern keyword in c?
What is clrscr ()?
Why c is known as a mother language?
What is string in c language?
Explain how do you sort filenames in a directory?
Why does not c have an exponentiation operator?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is main () in c?
What does calloc stand for?
What is calloc() function?
Can you please explain the difference between syntax vs logical error?
Write a program in c to replace any vowel in a string with z?
Explain what are preprocessor directives?