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
Answer Posted / 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 |
Post New Answer View All Answers
can we have joblib in a proc ?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Explain how do you generate random numbers in c?
Differentiate between calloc and malloc.
Which header file should you include if you are to develop a function which can accept variable number of arguments?
How do you construct an increment statement or decrement statement in C?
What is file in c language?
Explain modulus operator. What are the restrictions of a modulus operator?
Explain how do you print only part of a string?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
What is a macro, and explain how do you use it?
what does static variable mean?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
What is the advantage of a random access file?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }