Which of these statements are false w.r.t File Functions?
i)fputs() ii)fdopen() iii)fgetpos() iv)ferror()
A)ii B)i,ii C)iii D)iv
Post New Answer View All Answers
What is the difference between the expression “++a” and “a++”?
Difference between MAC vs. IP Addressing
How do you construct an increment statement or decrement statement in C?
What is pointers in c with example?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What are external variables in c?
Why we write conio h in c?
Why do we write return 0 in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is maximum size of array in c?
is it possible to create your own header files?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
what is a constant pointer in C
What are the types of functions in c?