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 |
Describe the order of precedence with regards to operators in C.
What is s in c?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
mplementation of stack using any programing language
What is variable and explain rules to declare variable in c?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
What are advantages and disadvantages of recursive calling ?
12 Answers College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
Explain the difference between structs and unions in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
wt is d full form of c
Why do we use namespace feature?
what is a function method?give example?