How can I get back to the interactive keyboard if stdin is redirected?
No Answer is Posted For this Question
Be the First to Post Answer
what are the compilation steps? ( i want inside the compiler )
Can we use visual studio for c?
Write a program to identify if a given binary tree is balanced or not.
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
why arithmetic operation can’t be performed on a void pointer?
List the variables are used for writing doubly linked list program.
how to find anagram without using string functions using only loops in c programming
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
What is the difference between malloc calloc and realloc in c?
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
Here is a good puzzle: how do you write a program which produces its own source code as output?
how to swap 4 number without using temporary number?