what are the facialities provided by you after the
selection of the student.
Answer / Omprakash Varanwal
This question seems to be unrelated to QTP or C programming. However, if we are discussing a student placement scenario in a company, some facilities typically provided include:
1. Training and orientation programs
2. Mentorship and guidance from experienced professionals
3. Opportunities for on-the-job learning and skill development
4. Access to resources such as libraries, labs, and equipment
5. Career growth opportunities and advancement
| Is This Answer Correct ? | 0 Yes | 0 No |
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 ].
How would you rename a function in C?
without using control structures and control structures find the max and min of given 2 nos
Explain the concept and use of type void.
What is meant by type casting?
What is extern variable in c with example?
What is the difference between the = symbol and == symbol?
Find greatest number out of 10 number without using loop.
How pointers are declared?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is the difference between procedural and declarative language?
What are dynamically linked and statically linked libraries?