Presentation is loading. Please wait.

Presentation is loading. Please wait.

CS1010E Programming Methodology Tutorial 4 Modular Programming with Functions C14,A15,D11,C08,C11,A02.

Similar presentations


Presentation on theme: "CS1010E Programming Methodology Tutorial 4 Modular Programming with Functions C14,A15,D11,C08,C11,A02."— Presentation transcript:

1 CS1010E Programming Methodology Tutorial 4 Modular Programming with Functions C14,A15,D11,C08,C11,A02

2 Question 1 a)What is the output ? 0 1 0 LineMainFunc1Console 4X = 0 5 0 6 11X = 0X = 1 12X = 0X = 11 7X = 00

3 Question 1 What is the output? 1 2 100 200 200 100 1 2 LineMainFunc2Console 4X=1,Y=2 5 1 2 6X=1,Y=2Num1= 1, Num2= 2 12X=1,Y=2Num1= 100, Num2= 2 13X=1,Y=2Num1= 100, Num2= 200 14X=1,Y=2Num1= 100, Num2= 200100 200 7X=1,Y=2Num1=2,Num2=1 12X=1,Y=2Num1= 200, Num2= 1 13X=1,Y=2Num1= 200, Num2= 100 14X=1,Y=2Num1= 200, Num2= 100200 100 8X=1,Y=21 2

4 Question 2 Random Function Rand() rand() returns a pseudo random Integer rand() number needs a SEED srand(int seed) reset SEED to be seed If srand() is not called, rand() uses default Create random INTEGER in [a, b]Create random number in [0, 1] How to generate random number in arbitrary interval ? How to generate other distributions ?

5 Question 2 Compare the two codes : The difference is where the srand(seed) is called For code 1, different random number is generated For code 2, the random number is always the same Because seed is reset in every iteration

6 Question 3

7

8 Storage Class and Scope Global variables: outside functions Global Variables are consider BAD !! Local variables: within functions

9 Storage classes - Static Static can also be defined within a function Static variable Is initialized at compilation time and retains its value between calls int main(void) { func(); } void func(){ static int count = 0; count++; printf("%d",count); } The function called with the same parameter may return different result

10 Some Questions from Past Year Paper Note that “%f” by default outputs to 6 decimal places!

11 Some Questions from Past Year Paper When evaluation, anything not 0 is TRUE, 0 is FALSE When output, TRUE is 1, FALSE is 0

12 Some Questions from Past Year Paper When use ++x, you increment before you fetch When use x++, you increment after fetch

13 Some Questions from Past Year Paper Be careful with the stopping condition

14 Some Questions from Past Year Paper Don’t get confused by the indentation!

15 Some Questions from Past Year Paper Macron is always direct substitution! Z=((++x) >= (y++)? (++x): (y++));

16 Some Questions from Past Year Paper (D) X = I = 0 cannot be used in variable declaration

17 Some Questions from Past Year Paper (A) Short-cut evaluations

18 Some Questions from Past Year Paper (B) Careful with (int) coercion

19 Some Questions from Past Year Paper (E) Direct substitution!

20


Download ppt "CS1010E Programming Methodology Tutorial 4 Modular Programming with Functions C14,A15,D11,C08,C11,A02."

Similar presentations


Ads by Google