Skip to content

Instantly share code, notes, and snippets.

@vxcute
Last active April 2, 2021 22:35
Show Gist options
  • Select an option

  • Save vxcute/34dd0ffe5034a0eb3df4968df4177603 to your computer and use it in GitHub Desktop.

Select an option

Save vxcute/34dd0ffe5034a0eb3df4968df4177603 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdbool.h>
#include <stdnoreturn.h>
// https://godbolt.org/z/W7jrMdMKG
int main()
{
int Can👧marry👦(int 👧age, int 👦age);
int 👧age, 👦age;
printf("Enter BOI Age: \n");
scanf("%d", &👦age);
printf("Enter Hot Qirl Age: \n");
scanf("%d", &👧age);
if(Can👧marry👦(👧age, 👦age))
printf("They Can Marry");
else
printf("Sadly U Should Fuck The Relation 😢");
return 0;
}
int Can👧marry👦(int 👧age, int 👦age)
{
// This is not true only for sarcasm
if(👧age > 👦age || 👦age > 👧age){
return false;
}
else{
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment