Is there any book to know about Basics of C Language?
Answers were Sorted based on User's Feedback
Answer / samir
yes,
Programming with C
Author is yashwant Kanetkar
| Is This Answer Correct ? | 4 Yes | 0 No |
Why we use stdio h in c?
Which sorting algorithm is the best?
implement general tree using link list
A MobileNumber is a VIP number if it satisfy the following conditions. The operator should be Vodafone. Atleast one 0 (Zero) should be exist in mobile number. The number should not end with 8. The single digit sum of all the digits in the number should be equal to 9. For example if the number is 9876543210, the sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9. Write a method: private boolean isVIPMobileNumber(String mobileNum, String operator) mobileNum phone number operator mobile operator as bsnl, Vodafone
write a program to concatenation the string using switch case?
12345 1234 123 12 1
a simple program in c language
Why we use int main and void main?
What are the types of pointers in c?
how to compare two strings without using strcmp() function??
What is pointer in c?
which one is highest Priority in c? a)=,b)+,c)++,d)==