Tamilmaran R
For the below 3 cases which a+b; operation takes more time? 1)int a,b; 2)float a,b; 3)int a;float b;
By Tamilmaran R in C, C++, MFC on Oct 07 2007
  • Neha Kumari
    Nov, 2017 5

    int a,float b;

    • 0
  • Oct, 2007 9

    int a,b; in this case both variables are integer type so less time to take a+b float a,b; this is also with similar data types so answer take less time int a; float b ; these two variables are different type so it takes more time to a+b.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS