Skip to content

Instantly share code, notes, and snippets.

View AntonioK180's full-sized avatar
🌐
Being

Antonio Kasabov AntonioK180

🌐
Being
View GitHub Profile
@ThunderXu
ThunderXu / CareerCup1.2.cpp
Created February 23, 2013 01:35
Implement a function void reverse(char* str) in C or C++ which reverses a null-terminated string.
#include "stdafx.h"
#include <string>
#include <iostream>
void reverse(char*);
int main()
{
using namespace std;
char str[] = "This is a test";