C++ Program to convert a decimal number into binary by inline function

By: Prof. Dr. Fazal Rehman | Last updated: May 4, 2020

Write a program in C++ to convert a decimal number into binary without using an array and with inline function.Decimal to binary C++

The inline function inline T4Tutorials_Decimal_Number(int n) helps to increase the execution time of a program. The programmer can make a request to the compiler to make the inline function as inline T4Tutorials_Decimal_Number(int n).

Making inline means that compiler can replace the function definitions of inline T4Tutorials_Decimal_Number(int n)with the place where this function is called T4Tutorials_Decimal_Number (n);.
The compiler replaces the definition of inline functions at compile time instead of referring function definition at runtime.

Output

Please enter Decimal number :

9

binary number =

1001

 

Leave a Comment

All Copyrights Reserved 2025 Reserved by T4Tutorials