Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Is min defined?
//Microsoft (R) C/C++ Optimizing Compiler Version 19.00.23506 for x86 #include <algorithm> #include <iostream> int main() { #ifdef min std::cout << "min is defined\n"; #else std::cout << "min is not defined\n"; #endif }
run
|
edit
|
history
|
help
0
C++ standard violation: [templates][explicit instantiation][access checking]
Additional layer of indirection
Computing factorial of an integer with recursion and iteration [EDIT]
Hangman
Competitive - Algorithm for max number of superior characters
Removing __unaligned specifier partial solution
Replace all spaces in a string in C++
problem_solution_1
0004
algorithm_1