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 4022what 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
3920if 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 3276player 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
Can two or more operators such as and be combined in a single line of program code?
What are preprocessor directives in c?
How can you increase the size of a dynamically allocated array?
Explain modulus operator. What are the restrictions of a modulus operator?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
How can I pad a string to a known length?
What is %s and %d in c?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What is identifier in c?
In a switch statement, what will happen if a break statement is omitted?
How can I do serial ("comm") port I/O?
What is getch() function?
Is there a way to compare two structure variables?
Explain what is a const pointer?
Describe the difference between = and == symbols in c programming?