class foo {
public:
static int func(const char*& p) const;
};
This is illegal, why?
Answer Posted / john gummadi
"const" cannot be used along with reference. And the function itself is const which means it cannot change any parameters. So no place for the reference here. If you really need reference, then get id of consts.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is NULL pointer?
Explain how can I manipulate strings of multibyte characters?
What happens if header file is included twice?
What is the use of getchar() function?
Write the Program to reverse a string using pointers.
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Explain bitwise shift operators?
Explain how can I convert a number to a string?
What is structure in c definition?
Difference between goto, long jmp() and setjmp()?
How many main () function we can have in a project?
Write the syntax and purpose of a switch statement in C.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is void pointers in c?