How we print the table of 3 using for loop in c
programing?
Answers were Sorted based on User's Feedback
Answer / chitra
int i,no;
for(i=1;i<=10;i++)
{
no=i*3;
printf("%d",no);
}
| Is This Answer Correct ? | 22 Yes | 5 No |
Answer / tevendra singh pardhi
#include<stdio.h>
main()
{
int i,ans;
for(i=1;i<=10;i++)
{
ans=3*i;
printf("%d",&ans) ;
}
return 0;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sanjay kr marandi
#include<stdio.h>
main()
{
int n,i,t=1;
printf("/nEnter a table:");
scanf("%d",&n);
for(i=1;i<=10;i++)
{
t=n*i;
printf("%dX%d=%d\n",n,i,t);
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / k.anuroop
#include<stdio.h>
main()
{
int a,i;
i=0;
for(i=0;i<21;i++)
{
a=3*i;
printf("\n3*%d=%d",i,a);
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / salu
\\its work for any table u want :)\\
#include<stdio.h>
#include<conio.h>
int main ()
{
int i=0;
int j=0;
int k=1;
int no=0;
printf("ENTER table no :");
scanf("%d",&i);
printf("ENTER lenght:");
scanf("%d",&j);
for (k=1;k<=j;k++)
{no=k*i;
printf("%d*%d=%d\n",i,j,no);
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / chitra
int i;
for(i=1;i<=10;i++)
{
i=i*3;
printf("%d",i);
}
| Is This Answer Correct ? | 11 Yes | 20 No |
main() { char *p="hai friends",*p1; p1=p; while(*p!='\0') ++*p++; printf("%s %s",p,p1); }
how many processes will gate created execution of -------- fork(); fork(); fork(); -------- Please Explain... Thanks in advance..!
Is it possible to print a name without using commas, double quotes,semi-colons?
What are segment and offset addresses?
#include<stdio.h> main() { const int i=4; float j; j = ++i; printf("%d %f", i,++j); }
How do you create a really large matrix (i.e. 3500x3500) in C without having the program crash? I can only reach up to 2500. It must have something to do with lack of memory. Please help!
main() { extern i; printf("%d\n",i); { int i=20; printf("%d\n",i); } }
main() { extern int i; i=20; printf("%d",sizeof(i)); }
How do you sort a Linked List (singly connected) in O(n) please mail to pawan.10k@gmail.com if u can find an anser...i m desperate to knw...
6 Answers Microsoft, MSD, Oracle,
main() { char a[4]="HELLO"; printf("%s",a); }
how to print 1 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 1 using any loop(for or while) only once(only 1 loop) and maximum 2 variables using C.
19 Answers Cap Gemini, Infosys,
#ifdef something int some=0; #endif main() { int thing = 0; printf("%d %d\n", some ,thing); }