Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
1 4023what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
L&T,
2439what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
L&T,
2645If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
3921if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
2 129091. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
1 3278player 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
1 3703
Describe explain how arrays can be passed to a user defined function
What are enums in c?
Explain what is the stack?
What are the basic data types associated with c?
What are predefined functions in c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is hash table in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Explain is it better to bitshift a value than to multiply by 2?
What is .obj file in c?
Differentiate between #include<...> and #include '...'
What is a 'null pointer assignment' error?
What are the storage classes in C?
What is void pointers in c?
What is variables in c?