which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
Answers were Sorted based on User's Feedback
Answer / shrikantauti
I would suggest you to read 'Let Us C' by Yashwant Kanetkar.
It includes all the things required for beginners.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / nitish
There are number of books and tutorials to learn C language. I visited a site that have all the materials for all programming languages...
Try these Links :
http://123techbooks.blogspot.com/search/label/C%20BOOKS
http://123techbooks.blogspot.com/2010/12/c-tutorials.html
I think this may give you maximum materials for your Courses..
Thanking You,
Nitish
| Is This Answer Correct ? | 5 Yes | 0 No |
What is pointers in c with example?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
why we need function pointers?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
How can you print HELLO WORLD without using "semicolon"?
What is a pragma?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
Explain what are reserved words?
Why cd or dvd are round why not square.
What is the difference between strcpy() and memcpy() function in c programming?