Exam (elaborations)
COS1512 EXAM PACK
- Course
- Institution
1 C STRINGS Error Correction If(str!=”STOP” If(strcmp(str,”STOP”); Str = “STOP” Strcpy(str,”STOP”); 2 RECURSION Void CountDown(int num) { If (num = 0) Cout << 0 << endl; Else { Cout << num << endl; CountDown(num-1); } } 3 POINTERS 3.1 The pro...
[Show more]