Why do we use stdio h and conio h?
No Answer is Posted For this Question
Be the First to Post Answer
What is the return type of sizeof?
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 ].
What are inbuilt functions in c?
What is the most efficient way to count the number of bits which are set in an integer?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
what is difference between declaring the pointer as int and char in c language?
What is a structure and why it is used?
What is indirect recursion? give an example?
what is the difference between unix os and linux os
write a program to find the largest and second largest integer from an array
Why should I prototype a function?
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion