Skip to content

Instantly share code, notes, and snippets.

View AnimeshRy's full-sized avatar
🏠
Working from home

Animesh AnimeshRy

🏠
Working from home
View GitHub Profile
@AnimeshRy
AnimeshRy / vigenere.c
Last active December 6, 2019 10:33
CS50 Vigenere 2019
#include <cs50.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, string argv[])
{
// Check if correct # of arguments given
if (argc != 2)
@AnimeshRy
AnimeshRy / Caesar.c
Created December 6, 2019 10:14
Easy Caesar CS50 version
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <cs50.h>
int main(int argc, string args[])
{
if (argc != 2)
{