Skip to content

Instantly share code, notes, and snippets.

@paul-at
Created October 21, 2016 09:46
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 paul-at/6046a7ff07ef328001904a046b8a74ad to your computer and use it in GitHub Desktop.
Save paul-at/6046a7ff07ef328001904a046b8a74ad to your computer and use it in GitHub Desktop.
IoT Quiz Test Case
#include <stdio.h>
void main() {
int value=100;
if(value > 100)
{
printf("1");
}
else if(value>100)
{
printf("2");
}
else
{
printf("3");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment