What is a far pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is this infamous null pointer, anyway?
What is the sizeof () operator?
What is volatile variable 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
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
what do you mean by inline function in C?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
Wt are the Buses in C Language
how to print the character with maximum occurence and print that number of occurence too in a string given ?