Skip to content

Instantly share code, notes, and snippets.

@gnitnaw
Created March 29, 2016 18:15
Show Gist options
  • Save gnitnaw/9df533e2fde43a71df0855bee4a56088 to your computer and use it in GitHub Desktop.
Save gnitnaw/9df533e2fde43a71df0855bee4a56088 to your computer and use it in GitHub Desktop.
DeepC -- example 3
#include <stdio.h>
void foo(void)
{
int a;
printf("%d\n", a);
}
void bar(void)
{
int a=42;
}
int main(void)
{
bar();
foo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment