Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions 16_function_pointers/cool

This file was deleted.

4 changes: 2 additions & 2 deletions 16_function_pointers/fp_function.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ int main() {

// if we pass the wrong function type,
// undefined behaviour occurs
printf("muld:\n");
blend(a,b,5,muld);
// printf("muld:\n");
// blend(a,b,5,muld);

return 0;
}