Is there any book to know about Basics of C Language?
Answer Posted / samir
yes,
Programming with C
Author is yashwant Kanetkar
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Why is c so important?
Explain what is the advantage of a random access file?
How will you delete a node in DLL?
What is a good way to implement complex numbers in c?
Explain which function in c can be used to append a string to another string?
Differentiate between Macro and ordinary definition.
What is a rvalue?
Why void main is used in c?
What is fflush() function?
What are extern variables in c?
Write a program to print all permutations of a given string.
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
What is volatile variable in c?
What are the keywords in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.