Sir i want e-notes of C languge of BAlaguruswami book i.e
scanned or pdf file of balaguruswamy book on c
language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
hi.. this vignesh writing to you
sir........................... can i say you a suggestion
sir....... if you want to have a great knowledge in C
programming.......... refer to "YASHWANT k KANETKAR" this
was thew best book ever i saw ............. my kind advices
is to refer to his books........ he is really a genius
.......... it just cost 195 only..................
| Is This Answer Correct ? | 48 Yes | 13 No |
Answer / no idea
hi
personally i won't prefer balaguruswamy or yeswanth
kanetkar
if u want to learn c please read GNU C reference manual
give the same words in google search u will get it
| Is This Answer Correct ? | 24 Yes | 11 No |
Answer / nazibsazib
i had downloaded this scanned copy from 4shared...it is quite similar to the one google books preview versio...the link is given below...hope it'll help...:-)
http://www.4shared.com/office/Q-l54QQK/programing_in_ansi_c_4_th_edit.html
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ishika
i too want e balagurusamy notes and ebook plz send me at
ishika883@yahoo.com
| Is This Answer Correct ? | 8 Yes | 6 No |
Answer / shanmuga
i also need c programming notes in softcopy any body can
send it please or show the link of e-notes
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / kush
i just want to know that sir which book i must get for c++
if you can send me e-notes for help my mail id is
kush.gupta88@gmail.com
| Is This Answer Correct ? | 7 Yes | 8 No |
write a programme that inputs a number by user and gives its multiplication table.
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
What are c identifiers?
Can we access array using pointer in c language?
Explain how can I convert a string to a number?
write a 'c' program to sum the number of integer values
out put of printf(ā%dā,printf(ram));
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
write a programe to find the factorial of given number using recursion