Week1 - Lec1 3 1
Week1 - Lec1 3 1
Computer Programming
2f3wts7
to complete it efficiently.
(this is not an official definition and you do not have to follow it word for word; just understand
the gist of it.)
14
Robotics Arduino
16
20
22
23
Abstraction increases
Complexity decreases
24
25
26
27
29
Related links 30
33
34
36
● When you add text other than white space in a format string that you
pass as an argument to scanf, the user must type input exactly as it
appears in the format string.
● You are essentially requiring the user to type input in a very particular
way.
48
50
52
53
55
56
57
58
double all numbers 8 Upto 15-16 digits after radical point %lf 3.1416….
59
60
Example:
63
73
80
81
82
83
84
#include<stdio.h>
int main() {
float var=1.3143547;
printf(“\n%f”, var);
printf(“\n%.2f”, var);
}
85