Skip to content

Instantly share code, notes, and snippets.

@hancheester
Last active November 3, 2019 00:37
Show Gist options
  • Save hancheester/17e1be95a315f76ad167209c0751ed24 to your computer and use it in GitHub Desktop.
Save hancheester/17e1be95a315f76ad167209c0751ed24 to your computer and use it in GitHub Desktop.
Test variables in C.
#include<stdio.h>
int main()
{
int apples;
int oranges;
int bananas;
printf("apples=%d oranges=%d bananas=%d", apples, oranges, bananas);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment