Answer Posted / tushar patil
#include<stdio.h>
#include<conio.h>
main()
{
int a=5,i;
printf("TABLE OF 5");
printf("
");
for(i=1;i<=10;i++)
{
printf("%d ",i*a);
}
getch();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
swap 2 numbers without using third variable?
What is function prototype in c with example?
When should you use a type cast?
What is the significance of c program algorithms?
Explain why can’t constant values be used to define an array’s initial size?
Dont ansi function prototypes render lint obsolete?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Explain goto?
How the c program is executed?
what are # pragma staments?
If you know then define #pragma?
Explain how can I make sure that my program is the only one accessing a file?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is extern variable in c with example?