why r u join this company? give solid resons.
Answers were Sorted based on User's Feedback
Answer / senthilkumar
it's the one and one leading company.team quatination is very super and excellent.the team leader is help to the staff.
encorage the team members.
| Is This Answer Correct ? | 3 Yes | 10 No |
Answer / rajee
Mainly for only one reason of showing my own talents...
| Is This Answer Correct ? | 2 Yes | 18 No |
Answer / pushpendra
i want to be a part of it.As it is my pleasure.
| Is This Answer Correct ? | 11 Yes | 31 No |
Answer / krijesh
bcoz i didn't get any other software company.
| Is This Answer Correct ? | 18 Yes | 58 No |
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
What is the method to save data in stack data structure type?
main is a predefined or user define function if user defined why? if predefined whay?
What are the difference between a free-standing and a hosted environment?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
Can we declare variable anywhere in c?
Why #include is used in c language?
Apart from dennis ritchie who the other person who contributed in design of c language.
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5