why you will give me a job in TCS.
Answers were Sorted based on User's Feedback
Answer / sumit
Its a simple economics, you want man power with required
skill set and I want money for my livelihood.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / harshithadesai
to encourage freshers & freshers may have good technical
skills
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / rahul
Did you ask the interviewer this question or the interviewer
asked you this?
| Is This Answer Correct ? | 1 Yes | 1 No |
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
Does c have an equivalent to pascals with statement?
What is #ifdef ? What is its application?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
can any one tel me wt is the question pattern for NIC exam
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
What does emoji p mean?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is variable initialization and why is it important?
Difference between goto, long jmp() and setjmp()?
Does sprintf put null character?