Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
PK!8ݹprimitive-types.expect.txtnuIwconst uint64_t MAX_INT_64; struct position_tag; PK!R` function-declarations.expect.txtnuIwdecltype(auto) look_up_a_string_1() { return lookup1(); } void look_up_a_string_2() { return lookup2(); } friend void A::showB(B x) {} friend void showB(B x) {} friend void showB(B::SomeType x) {} inline int add(int a, int b) {} int8t Get_Tile_Value() {} int8_t Get_Tile_Value() {} B::type test() {}; // template boost::optional<application> handle_key(application state, key_code key, coord size); test(); PK!;S2function-params.expect.txtnuIwint f( int a = 1, char* b = "2", // Line comment double c = 3.0, /* Block comment */ ARRAY(int, 5) d, void* e __attribute__((unused)) ); PK!T{{expression-keywords.expect.txtnuIwdouble x = exp(log(2)); // recognize built-ins return 0; // recognize keyword that started the expression PK!pԛfunction-declarations.txtnuIwdecltype(auto) look_up_a_string_1() { return lookup1(); } void look_up_a_string_2() { return lookup2(); } friend void A::showB(B x) {} friend void showB(B x) {} friend void showB(B::SomeType x) {} inline int add(int a, int b) {} int8t Get_Tile_Value() {} int8_t Get_Tile_Value() {} B::type test() {}; // template boost::optional handle_key(application state, key_code key, coord size); test(); PK!|111primitive-types.txtnuIwconst uint64_t MAX_INT_64; struct position_tag; PK!h<=__number-literals.txtnuIw/* digit separators */ int number = 2'555'555'555; // digit separators float exponentFloat = .123'456e3'000; // digit separators in floats float suffixed = 3.000'001'234f // digit separators in suffixed numbers char word[] = { '3', '\0' }; // make sure digit separators don't mess up chars float negative = -123.0f; // negative floating point numbers PK!. . string-literals.expect.txtnuIw// Unicode literals auto str = "Hello regular string"; auto utf8 = u8"Hello utf-8 string"; auto utf16 = u"Hello utf-16 string"; auto utf32 = U"Hello utf-32 string"; // Wide-character strings auto wide_char = L"Hello wchar_t string"; auto lr = LR"(Hello world)"; // character literals auto wide_char = L'H'; auto cr = '\n'; auto chr = 'H'; auto utf8 = u8'H'; auto utf16 = u'H'; auto utf32 = U'H'; auto unicode = L'\u202e' auto hex = '\xFF' auto octal = '\123' // Raw string literals (multiline) auto char_multi = R"(Hello "normal" multiline string.)"; auto utf8_multi = u8R"(Hello "utf-8" multiline string)"; auto utf16_multi = uR"(Hello "utf-16" multiline string)"; auto utf32_multi = UR"(Hello "utf-32" multiline string)"; // Raw string literals with delimiter (multiline) auto char_multi = R"blah1(Hello "normal" multiline )" )blah" string.)blah1"; auto utf8_multi = u8R"blah2(Hello "utf-8" multiline )" )blah" string)blah2"; auto utf16_multi = uR"blah3(Hello "utf-16" multiline )" )blah" string)blah3"; auto utf32_multi = UR"blah4(Hello "utf-32" multiline )" )blah" string)blah4"; // Meta strings #include <stdio> #include "lib.h" PK!ȳpreprocessor.expect.txtnuIw#include <iostream> #define foo 1<<16 #ifdef DEBUG TYPE1 foo(void) #else int foo(void) #endif { } #define x(v) ((v)) # define x(v) ((v)) # define x(v) ((v)) #if MACRO_WITH_STRING_ARG("hello \"world\"") #elif MULTI_LINE /* comment */ < \ EXPRESSION int bar; #endif // comment PK! xɖfunction-title.txtnuIwint main() { A a = new A(); int b = b * sum(1, 2); if (a->check1()) return 3; else if (a->check2()) return 4; return a->result(); } PK!\&Mfunction-title.expect.txtnuIwint main() { A a = new A(); int b = b * sum(1, 2); if (a->check1()) return 3; else if (a->check2()) return 4; return a->result(); } PK!}jfunction-params.txtnuIwint f( int a = 1, char* b = "2", // Line comment double c = 3.0, /* Block comment */ ARRAY(int, 5) d, void* e __attribute__((unused)) ); PK!0number-literals.expect.txtnuIw/* digit separators */ int number = 2'555'555'555; // digit separators float exponentFloat = .123'456e3'000; // digit separators in floats float suffixed = 3.000'001'234f // digit separators in suffixed numbers char word[] = { '3', '\0' }; // make sure digit separators don't mess up chars float negative = -123.0f; // negative floating point numbers PK!nbӸpreprocessor.txtnuIw#include #define foo 1<<16 #ifdef DEBUG TYPE1 foo(void) #else int foo(void) #endif { } #define x(v) ((v)) # define x(v) ((v)) # define x(v) ((v)) #if MACRO_WITH_STRING_ARG("hello \"world\"") #elif MULTI_LINE /* comment */ < \ EXPRESSION int bar; #endif // comment PK!يTkkexpression-keywords.txtnuIwdouble x = exp(log(2)); // recognize built-ins return 0; // recognize keyword that started the expression PK!g8pointers-returns.expect.txtnuIw// These will all work: char** foo_bar(); char ** foo_bar(); char **foo_bar(); PK!ҍstring-literals.txtnuIw// Unicode literals auto str = "Hello regular string"; auto utf8 = u8"Hello utf-8 string"; auto utf16 = u"Hello utf-16 string"; auto utf32 = U"Hello utf-32 string"; // Wide-character strings auto wide_char = L"Hello wchar_t string"; auto lr = LR"(Hello world)"; // character literals auto wide_char = L'H'; auto cr = '\n'; auto chr = 'H'; auto utf8 = u8'H'; auto utf16 = u'H'; auto utf32 = U'H'; auto unicode = L'\u202e' auto hex = '\xFF' auto octal = '\123' // Raw string literals (multiline) auto char_multi = R"(Hello "normal" multiline string.)"; auto utf8_multi = u8R"(Hello "utf-8" multiline string)"; auto utf16_multi = uR"(Hello "utf-16" multiline string)"; auto utf32_multi = UR"(Hello "utf-32" multiline string)"; // Raw string literals with delimiter (multiline) auto char_multi = R"blah1(Hello "normal" multiline )" )blah" string.)blah1"; auto utf8_multi = u8R"blah2(Hello "utf-8" multiline )" )blah" string)blah2"; auto utf16_multi = uR"blah3(Hello "utf-16" multiline )" )blah" string)blah3"; auto utf32_multi = UR"blah4(Hello "utf-32" multiline )" )blah" string)blah4"; // Meta strings #include #include "lib.h" PK!JgOOpointers-returns.txtnuIw// These will all work: char** foo_bar(); char ** foo_bar(); char **foo_bar(); PK!8ݹprimitive-types.expect.txtnuIwPK!R` !function-declarations.expect.txtnuIwPK!;S2< function-params.expect.txtnuIwPK!T{{ expression-keywords.expect.txtnuIwPK!pԛ function-declarations.txtnuIwPK!|111primitive-types.txtnuIwPK!h<=__<number-literals.txtnuIwPK!. . string-literals.expect.txtnuIwPK!ȳVpreprocessor.expect.txtnuIwPK! xɖ$function-title.txtnuIwPK!\&M_%function-title.expect.txtnuIwPK!}ja(function-params.txtnuIwPK!0A)number-literals.expect.txtnuIwPK!nbӸ&-preprocessor.txtnuIwPK!يTkk.expression-keywords.txtnuIwPK!g84/pointers-returns.expect.txtnuIwPK!ҍ1string-literals.txtnuIwPK!JgOOD6pointers-returns.txtnuIwPK#6