Skip to content

Instantly share code, notes, and snippets.

@JackyYin
Created January 6, 2022 08:38
Show Gist options
  • Save JackyYin/9530c4442047c99136a2aa0ec819faa6 to your computer and use it in GitHub Desktop.
Save JackyYin/9530c4442047c99136a2aa0ec819faa6 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void g()
{
printf("456\n");
}
void f(int a, int b)
{
g();
}
int main() {
f(10, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment