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 |
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
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
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
Is c is a procedural language?
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?
What is dynamic variable in c?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
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.
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
what is the difference between declaration ,defenetion and initialization of a variable?
What is memcpy() function?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.