Skip to content

Instantly share code, notes, and snippets.

View rberaldo's full-sized avatar

Rafael Beraldo rberaldo

View GitHub Profile
anonymous
anonymous / initials.c
Created April 25, 2016 15:39
// Outputs the uppercase initials of a name
#include <stdio.h>
#include <cs50.h>
#include <string.h>
#include <ctype.h>
#define FIRSTLETTER 0
int main(void)
{
// Get user input
/**
* caesar.c
*
* Rafael Beraldo
* rberaldo@cabaladada.org
*
* Encrypts text with the Caesar cipher
*/
#include <stdio.h>