Skip to content

Instantly share code, notes, and snippets.

View rajatkhanduja's full-sized avatar

Rajat Khanduja rajatkhanduja

View GitHub Profile
@rajatkhanduja
rajatkhanduja / FizzBuzz.cpp
Last active August 29, 2015 13:58
Solution of the famous FizzBuzz problem (http://blog.codinghorror.com/why-cant-programmers-program/) in C++
#include<iostream>
using namespace std;
int main(void)
{
for(int i = 1; i <= 100; ++i)
{
if (i % 3 == 0)
{
#ifndef EVERNOTE_AUTHENTICATOR_H
#define EVERNOTE_AUTHENTICATOR_H
#include "o2/o1.h"
#include <QString>
class EvernoteAuthenticator : public O1{
public:
EvernoteAuthenticator(const QString& host, const QString& customerKey, const QString& customerSecret, QObject *parent = 0){