What are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
Is that possible to add pointers to each other?
how can we print hellow world programme without using semicolon
What are the various topologies? Which one is the most secure?
code for replace tabs with equivalent number of blanks
write a code for large nos multilication (upto 200 digits)
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
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
How do you define structure?
What is volatile keyword in c?
write a program that finds the factorial of a number using recursion?
Is file a keyword in c?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }