Created
October 21, 2016 09:46
-
-
Save paul-at/6046a7ff07ef328001904a046b8a74ad to your computer and use it in GitHub Desktop.
IoT Quiz Test Case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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