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 |
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
character array A[12] can hold
What is auto keyword in c?
What is sorting in c plus plus?
What are dynamically linked and statically linked libraries?
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Why c language is called c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Explain how can I avoid the abort, retry, fail messages?
Why ordinary variable store only one value
What is character constants?