First Post!
Sup! After fighting with wordpress over addon exploits, I decided to remake the blog with Jekyll. A friend recommended it to me, and I’ve pretty pleased with it so far. Hopefully, if I have enough time, I’ll post more thoughts here, but for the rest of the post, it’s all testing and references.
H1
H2
H3
asd
{% highlight c++ %}
code code code
{% endhighlight %}
Produces something like this:
int main(int argc, char const *argv[])
{
string myString;
cout << "input a string: ";
getline(cin, myString);
int length = myString.length();
char charArray = new char * [length];
charArray = myString;
for(int i = 0; i < length; ++i){
cout << charArray[i] << " ";
}
delete[] charArray;
return 0;
}
Images
Comments
Loading comments..