From f8b740c5b083cbb2d755b8d1adb7dea41563c9ac Mon Sep 17 00:00:00 2001 From: Oskar Date: Mon, 16 Sep 2024 18:10:18 +0200 Subject: more --- 6p53.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 6p53.cpp (limited to '6p53.cpp') diff --git a/6p53.cpp b/6p53.cpp new file mode 100644 index 0000000..c02561b --- /dev/null +++ b/6p53.cpp @@ -0,0 +1,23 @@ +#include + +/* + * + * 6.53 + * + * + */ + +int main () { + + /* + (a) int calc(int&, int&); + int calc(const int&, const int&); // Low level const + + (b) int calc(char*, char*); + int calc(const char*, const char*); // Low level const + + (c) int calc(char*, char*); + int calc(char* const, char* const); // Top level const ignored + */ + return 0; +} -- cgit v1.2.3