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
Write a program to print fibonacci series using recursion?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What are nested functions in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain what are multidimensional arrays?
Which function in C can be used to append a string to another string?
How to define structures? ·
Why we use stdio h in c?
If the size of int data type is two bytes, what is the range of signed int data type?
What is the size of a union variable?
Explain how can you be sure that a program follows the ansi c standard?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Define macros.