inline function is there in c language?
Answers were Sorted based on User's Feedback
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 |
Answer / srinivasroyal
no. there is no such type of function available in C-language.
| Is This Answer Correct ? | 0 Yes | 0 No |
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 |
Answer / subash
no inline function there in c language only c++ language
| Is This Answer Correct ? | 0 Yes | 0 No |
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.
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?
What is the use of bitwise operator?
how to use virual function in real time example
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.
What is p in text message?
What is assignment operator?
How is a structure member accessed?
What was noalias and what ever happened to it?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
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; } }
Do you know what are bitwise shift operators in c programming?