Skip to content

Commit ca43564

Browse files
author
Mykolas Krupauskas
committed
start working on crack solution
1 parent 74e15ca commit ca43564

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

chapter2/crack.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#include <stdio.h>
2+
#include <cs50.h>
3+
4+
int main(int argc, char **argv)
5+
{
6+
// There must be two arguments
7+
if (argc != 2)
8+
{
9+
printf("No key provided");
10+
return 1;
11+
}
12+
}

0 commit comments

Comments
 (0)