Latest SELF Aptitude Question SOLUTION: What will be output of the following c program? #include "stdio.h" int main() { int _ = 5; int __ = 10; int ___; ___ = _ + __; printf("%i", ___); return 0; }