HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I
NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
Answer Posted / pranab
hello sir, stop bothering about what type of person i am,
rather concentrate on what type of person you are and try to
overcome your shortcomings and let us live in peace. thanks.
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Tell me the use of bit field in c language?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is the use of typedef in structure in c?
What does the format %10.2 mean when included in a printf statement?
What is difference between far and near pointers?
What are pointers? What are different types of pointers?
How does placing some code lines between the comment symbol help in debugging the code?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What do you understand by normalization of pointers?
Can the sizeof operator be used to tell the size of an array passed to a function?
Describe how arrays can be passed to a user defined function
Can one function call another?
What is wrong with this declaration?
How can a string be converted to a number?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].