Is there any book to know about Basics of C Language?

Answers were Sorted based on User's Feedback



Is there any book to know about Basics of C Language?..

Answer / praveen

Programming in C

Balaguruswamy

Is This Answer Correct ?    6 Yes 0 No

Is there any book to know about Basics of C Language?..

Answer / samir

yes,

Programming with C
Author is yashwant Kanetkar

Is This Answer Correct ?    4 Yes 0 No

Is there any book to know about Basics of C Language?..

Answer / anita patrot

ya
Balguruswamy

Is This Answer Correct ?    3 Yes 1 No

Is there any book to know about Basics of C Language?..

Answer / nitin garg

c in depth

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +

1 Answers  


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%

4 Answers  


Is c is a procedural language?

0 Answers  


struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?

1 Answers   Wipro,


What is dynamic variable in c?

0 Answers  


the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }

4 Answers   CMC, TCS,


What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.

5 Answers   CCEM, TCS,


hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

0 Answers   TCS,


what is the difference between declaration ,defenetion and initialization of a variable?

7 Answers   LG Soft,


What is memcpy() function?

0 Answers  


How many ways are there to swap two numbers without using temporary variable? Give the each logic.

9 Answers  


Categories