What is mean by data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain why can’t constant values be used to define an array’s initial size?
How are 16- and 32-bit numbers stored?
without a terminator how can we print a message in a printf () function.
User define function contain thier own address or not.
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
what is the structure?
How a string is stored in c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Write a program to check whether a number is prime or not using c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
what is the difference between getch() and getchar()?
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