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 |
Why do we use stdio h and conio h?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Is fortran still used today?
When would you use a pointer to a function?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How does free() know explain how much memory to release?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
what is a stack
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
how to swap four numbers without using fifth variable?
What is scanf_s in c?
What is typedef example?