here is a link to download Let_Us_C_-_Yashwant_Kanetkar
Answers were Sorted based on User's Feedback
Answer / maddy
rapidshare.com/files/172131354/Let_Us_C_-_Yashwant_Kanetkar.pdf
| Is This Answer Correct ? | 37 Yes | 2 No |
Answer / manishsoni
what is mean of this question plz ellaborate it
| Is This Answer Correct ? | 7 Yes | 2 No |
Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .
What is function what are the types of function?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Why does everyone say not to use scanf? What should I use instead?
Can I initialize unions?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
write a program to print infinte number
where do we use volatile keyword?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
if we take a number as a char then can we manipulate(add, subtract) on this number
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
What are the difference between a free-standing and a hosted environment?