Just press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.
Press "Esc" or "o" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides, as if you were at 1,000 feet above your presentation.
// Hello World!
01001000 01100101 01101100 01101100 01101111
00100000
01010111 01101111 01110010 01101100 01100100 00100001
string coolFun(someError){
switch (someError) {
case 1:
return "Unexpected error";
case 13:
return "The file version is not supported.";
case 23:
return "Error opening file";
case 42:
return "File is broken";
|
return null;
}
void genMatrix(float**& matrix, int m, int n) {
matrix = new float* [m];
for (int i = 0; i < m; i++) {
matrix[i] = new float[n];
for (int j = 0; j < n; j++){
matrix[i][j] = genRandFloat();
}
cout << endl;
}
}
////////////////////// VS
void genMatrix(float** matrix, int m, int n) {
matrix = new float* [m];
for (int i = 0; i < m; i++) {
matrix[i] = new float[n];
for (int j = 0; j < n; j++){
matrix[i][j] = genRandFloat();
}
cout << endl;
}
}