what is an inline function?
Answers were Sorted based on User's Feedback
Answer / naveen shukla
inline function is basically a language construct which tell
the compiler to have a full function statement in the
program where the function is used
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / srinivasroyal
inline function means where the function call is replaced by
the function defination.(which can be expands in a line).
| Is This Answer Correct ? | 2 Yes | 0 No |
Differentiate between the expression “++a” and “a++”?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
Explain what is a const pointer?
how to connect oracle in C/C++.
What are the functions to open and close file in c language?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
how to generate sparse matrix in c
Do string constants represent numerical values?
What is difference between function overloading and operator overloading?
I came across some code that puts a (void) cast before each call to printf. Why?
What does sizeof int return?