Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


inline function is there in c language?

Answers were Sorted based on User's Feedback



inline function is there in c language? ..

Answer / 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

inline function is there in c language? ..

Answer / srinivasroyal

no. there is no such type of function available in C-language.

Is This Answer Correct ?    0 Yes 0 No

inline function is there in c language? ..

Answer / rakshitha

No inline functions r not ther in c. its only in c++, in
c++ it is used to replace function call with the body of
the function..

Is This Answer Correct ?    0 Yes 0 No

inline function is there in c language? ..

Answer / subash

no inline function there in c language only c++ language

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

0 Answers   Wilco,


How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?

2 Answers  


What is the use of bitwise operator?

0 Answers  


how to use virual function in real time example

1 Answers   CTS, Wipro,


Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.

0 Answers  


What is p in text message?

0 Answers  


What is assignment operator?

0 Answers  


How is a structure member accessed?

0 Answers  


What was noalias and what ever happened to it?

0 Answers  


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


Do you know what are bitwise shift operators in c programming?

0 Answers  


Categories