write the table of 2 ? upto 100
Answers
Answered by
2
Answered by
3
2
4
6
10
12
14
16
17
20
22
24
26
28
30
32
34
36
38
40
42
44
46
50
52
54
56
58
60
62
64
66
68
70
72
74
76
78
80
82
84
86
88
90
92
94
96
98
100
HOPE IT HELPS YOU!!!
4
6
10
12
14
16
17
20
22
24
26
28
30
32
34
36
38
40
42
44
46
50
52
54
56
58
60
62
64
66
68
70
72
74
76
78
80
82
84
86
88
90
92
94
96
98
100
HOPE IT HELPS YOU!!!
Similar questions
int main()
{
int a, i;
printf("Enter number: ");
scanf("%d",&a);
for(i=1; i<=100; ++i)
{
printf("%d * %d = %d \n", a, i, a*i);
}
return 0;
}