Answer Posted / krishan saini
well, syntel is 1 of the most prestigious MNC . any1
especially freshers like me would like to join such a MNC
which provides a challenging environment for work which
helps in the growth of the company as well as of the
candidate.that,s why i would feel proud if i can be the part
of your company.
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is the benefit of using #define to declare a constant?
What is dynamic variable in c?
What is c programming structure?
What is ponter?
What are logical errors and how does it differ from syntax errors?
What are the storage classes in C?
What do you mean by Recursion Function?
There seem to be a few missing operators ..
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is hashing in c?
What are register variables? What are the advantage of using register variables?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Write a code to remove duplicates in a string.
What is d'n in c?