Can 'this' pointer by used in the constructor?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why do some versions of toupper act strangely if given an upper-case letter?

0 Answers  


Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0

6 Answers   Qualcomm,


Explain 'bus error'?

0 Answers  


Explain what is a 'locale'?

0 Answers  


write a method for an array in which it can display the largest n next largest value.

1 Answers   Value Labs,






Is c programming hard?

0 Answers  


what type of language is C?

13 Answers   Microsoft,


different between overloading and overriding

3 Answers  


How can I rethow can I return a sequence of random numbers which dont repeat at all?

0 Answers  


I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.

1 Answers  


"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above

0 Answers  


void main() { int i=5; printf("%d",i++ + ++i); }

21 Answers   ME,


Categories