Skip to content

Instantly share code, notes, and snippets.

@wakoliVotes
Created May 5, 2022 19:16
Show Gist options
  • Save wakoliVotes/082e842aa7d1f1d4a3a3a164d0016529 to your computer and use it in GitHub Desktop.
Save wakoliVotes/082e842aa7d1f1d4a3a3a164d0016529 to your computer and use it in GitHub Desktop.
// Illustrating garbage value in C Programming language
#include <stdio.h>
int main()
{
// Declaring the variable num
int num;
// Using printf function to display num
printf("%d\n", num);
// num is initialized and assigned 2500000
num = 2500000;
printf("%d", num);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment