Answer Posted / 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 |
Post New Answer View All Answers
Can we use any name in place of argv and argc as command line arguments?
Difference between constant pointer and pointer to a constant.
What is %s and %d in c?
How can you find out how much memory is available?
Describe wild pointers in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the difference between array_name and &array_name?
Explain modulus operator.
What is the difference between functions abs() and fabs()?
how is the examination pattern?
Is c is a middle level language?
Are there constructors in c?
How do you sort filenames in a directory?
What is dynamic variable in c?