Why choose IT field?( as I was from EEE background) What is function overloading? Is C++ completely object oriented language? What is Slip? What happens to current in step down transformer?Why? Coding: Write a program to print numbers from 5 to 10 and 15 to 20 using only 1 loop.
Sigiloso
#include void main() { int i; for(i=5;i<11;i++) {printf("%d %d\n",i,i+10); } }