inline function is there in c language?

Answer Posted / kathir

No, Inline functions are introduced in C++ to avoid the
problems while using macros.
using inline functions in C++ is as equivalent as defining
a function macro.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

671


What is exit() function?

563


Do you know the purpose of 'register' keyword?

646


write a c program to find the sum of five entered numbers using an array named number

1622


Which header file is essential for using strcmp function?

947






Can you return null in c?

601


pierrot's divisor program using c or c++ code

1734


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

1190


What are file streams?

574


Explain what happens if you free a pointer twice?

615


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

671


What is the purpose of 'register' keyword?

694


What is uint8 in c?

648


What is the difference between NULL and NUL?

733


What is the best way to comment out a section of code that contains comments?

786