- Joined
- 5/2/06
- Messages
- 12,165
- Points
- 273
Just a note for the members who currently taking our online C++ course but it would be useful for many people as well.
You can specify up to 201 languages such as csharp, java, sql, php, etc
\(\large e^x=\sum_{n=0}^\infty\frac{x^n}{n!}\) will give me \(\large e^x=\sum_{n=0}^\infty\frac{x^n}{n!}\)
- Code highlighter
Code:
// Hello.cpp
//
// Simple example of function bodies.
//
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include <iostream> // C++ style I/O using operator overloading
using namespace std; // The C++ logical collection of functions
void hello_C()
{
printf("Hello Quantnet, C style\n");
}
void hello_CPP()
{
// Using (binary) operator overloading
cout << "Hello Quantnet, C++ style \n";
}
- Latex
\(\large e^x=\sum_{n=0}^\infty\frac{x^n}{n!}\) will give me \(\large e^x=\sum_{n=0}^\infty\frac{x^n}{n!}\)