Journal Of  Wed. Sep 28

QUIZ POSTPONED UNTIL OCT 12TH. due to class request.

Aug/Sept    

Oct

Nov

Dec

Mon Weds Mon Weds Mon Weds Mon Weds

 29

 

 31

3

Guest speaker

5

No class

 

2

5

7

 No class

 7

10

No class

12

Quiz

7

9

12

 Last class

14

Final

12

14

 

17

Midterm

19

14

16

19

Final

 

19

21

24

 

26

21

23

   

26

28

31

 

28

30

 

   

 

<tr>
<td vAlign="top" width="13%" height="33">
<p align="center"><b><sup><font size="4">
<a href="http://drebrahimi.com/bu3015/jvb092605.htm">26</a></font></sup></b></td>
<td vAlign="top" width="12%" height="33">
<p align="center"><b><sup><font size="4">28</font></sup></b></td>
<td vAlign="top" width="13%" height="33">
<p align="center"><b>31</b></td>
<td vAlign="top" width="12%" height="33">&nbsp;</td>
<td vAlign="top" width="10%" height="33">
<p align="center"><b>28</b></td>
<sub>
<td vAlign="top" width="12%" height="33">
<p align="center"><b>30</b></p>
<p align="center">&nbsp;</td>
<sub>
<td vAlign="top" width="14%" height="33">&nbsp;</td>
<td vAlign="top" width="21%" height="33">&nbsp;</td>
</tr>

 

please look at the site Acm.org

bool func(char *s1, size_t lenl,

        char *s2, size_t  len2) {

    if (1 + len1 + len2 > 64)

        return false;

 

// accommodate for the trailing null in the addition

    char *buf = (char*)malloc(len1+len2+1);

   if (buf) {

        StringCchCopy (buf,len1+len2,s1);

        StringCchCat(buf,len1+len2,s2)

}

// do other stuff with buf

if (buf) free (buf);

return true;

}