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 |
What is scope of variable in c?
What is wrong in this statement?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
if we take a number as a char then can we manipulate(add, subtract) on this number
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} .
Explain About fork()?
How many identifiers are there in c?
What is the most efficient way to store flag values?
how to make program without <> in libray.
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
how to convert an char array to decimal array