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 |
c program to subtract between two numbers without using '-' sign and subtract function.
What is variables in c?
What is difference between array and structure in c?
What is header file definition?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
how to swap 4 number without using temporary number?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
What is the scope of static variables in c language?
what is an inline fuction??
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
Why is structure padding done in c?