Skip to content

Instantly share code, notes, and snippets.

View NTimmons's full-sized avatar

Nicholas Timmons NTimmons

View GitHub Profile
@NTimmons
NTimmons / enum.h
Created May 7, 2022 21:58
C++ Enum examples and rules
void Enum_Test()
{
// Using Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30139
// on VS2019. 07/05/2022
// Enums are a type which are only able to represent a specifically chosen
// range of values. Each value is a named constant within the class.
std::cout << "===================\n" << "Start of Enum_Test().\n";
<!DOCTYPE html>
<html>
<head><meta charset="utf-8" />
<title>FuzzingTesting</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>