Skip to content

Instantly share code, notes, and snippets.

@7415963987456321
Created September 27, 2019 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 7415963987456321/f08c5d546a5e441c6c1f03209f07058d to your computer and use it in GitHub Desktop.
Save 7415963987456321/f08c5d546a5e441c6c1f03209f07058d to your computer and use it in GitHub Desktop.
Heppi berthday
#include <stdio.h>
#define NAME "JOSHAA"
#define CURRENT_AGE 25
unsigned int increment_age(unsigned int age) {
return age = -(~age);
}
int main(int argc, const char *argv[]) {
puts("Happi berthday " NAME);
printf("%d\n", increment_age(CURRENT_AGE));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment