C
http://groups.yahoo.com/group/c4swimmers/files/KernighanRitchie.pdf
http://groups.yahoo.com/group/c4swimmers/files/c.htm
http://computer.howstuffworks.com/framed.htm?parent=c.htm&url=http://www.desy.de/gna/html/cc/Tutorial/tutorial.html
Program Library (Static & Dynamic libraries) HOWTO...?
http://www.ibiblio.org/mdw/HOWTO/Program-Library-HOWTO/index.html
Online Quick reference - C Precedence Table
http://www.isthe.com/chongo/tech/comp/c/c-precedence.html
Anybody knows fully about fuunction pointers please send some material and examples.
www.newty.de/fpt/zip/e_fpt.pdf
www.function-pointer.org
Download GCC For Windows
http://sis.bris.ac.uk/~dw0857/gcc-2.95.2-crtdll.exe
http://gcc.gnu.org/
LEARN C/C++ TODAY (A list of resources/tutorials)
http://www.faqs.org/faqs/C-faq/learn-c-cpp-today/index.html
Compiler Dependants
http://dev.unicals.com/c99-draft.html#J.3
http://www.eskimo.com/~scs/C-faq/q3.2.html
Visit http://intelligentia.8m.net/ and click on 'ADA'. Now Advanced
Data Structures programs list includes Knapsack with source code. Previously I was maintaining the above mentioned site alongwith my friends. Now we're not planning to upgrade but will move the info to c4swimmers soon as I believe the info presented in that site is very much useful too (specially for Engg. students but syllabus is outdated).
C/C++ Interview Questions:
http://www.softcorp.demon.co.uk/c++2.htm
http://www.onesmartclick.com/interviews/interviews-programming.html
http://www.cpuniverse.com/newsite/archives/1999/mar/c++.html
http://www.oneparticularharbor.net/sam/interview.html
http://www.acetheinterview.com/cgi-bin/qanda.cgi?action=topics&number=5
http://www.geocities.com/Athens/Agora/3027/work/interviewQuestions.html
http://www.moskalyuk.com/jobs/cpp_5.htm
http://www.moskalyuk.com/jobs/java_1.htm
http://www.cs.unc.edu/~scheib/work/questions/
http://www.cis.temple.edu/~ingargio/cis307/assessment/interviews.html
http://www.geocities.com/SiliconValley/Park/1512/cpuz_l1.html
C/C++ Notes for Interviews:
http://leepoint.net/notes/cpp/
http://www.parashift.com/c++-faq-lite/
http://cslibrary.stanford.edu/
Data Structure Notes:
http://ciips.ee.uwa.edu.au/~morris/Year2/PLDS210/ds_ToC.html
http://www.csl.mtu.edu/cs2321.rp/www/lectures/cs2321lectures.htm
When the C precedance table http://www.difranco.net/cop2220/op-prec.htm is followed the expression would be
constructed as:
z/=(((y/z)==3)?(y/z):(x*y))
Output of the expression is 0.
I need some suggestions regarding this
following issue:
"When you edit text in a text editor, if you press Ctrl+C to copy a block of text, the highlighted portion will be copied into an OS area called Clipboard( its a buffer). You can retrieve this saved portion using Ctrl+V (Paste)".
My aim is to access this Clipboard buffer either thru a C program or any other programming language. How to do this? I did a search for this on the internet, but didnt find any useful stuff. If anyone some suggestions please share with me. This is something interesting also. Hope I can get some ideas.
http://www.codeproject.com/csharp/clipboard01.asp
I would like to know: how do we get pointers to function and use them
Visit the links:
http://www.newty.de/fpt/index.html
http://oopweb.com/CPP/Documents/FunctionPointers/Volume/CCPP/FPT/em_fpt.html
u can get the C compiler from " www.download.com"
u just enter the options in search area and get it ur own...
http://www.acms.arizona.edu/education/opti_583x/sample_code/downloadTC.html
List of C/C++ Compilers
Looking for a free C compiler or a free C++ compiler? This page lists numerous free C and C++ compilers, cross-compilers and interpreters for a wide variety of operating systems (including embedded systems).
http://www.thefreecountry.com/compilers/cpp.shtml
Please don't use TC. It's a pre-ANSI copiler. Go for gcc instead. For windows, you can get a command line version of gcc with cygwin (www.cygwin.com) If you need an IDE for it, you could go for Dev-cpp (http://www.bloodshed.net/dev/devcpp.html), which comes with mingw (gcc ported to windows) integrated.
http://publications.gbdirect.co.uk/c_book/
http://rapidshare.de/files/2371186/How_to_use_C_Pointers.zip.html
Thinking in C++
http://rapidshare.de/files/3401082/TIC2Vone.zip.html
Queries in C
1. If average insertion time is not important, but average retrieval time is important, which data structure can be used Stack or Queue or Binary Tree or Doubly Linked list?
2. How can I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
I m not very sure about it but answer of ur 2nd qn is.. char *(*(*a[N])())(); like char *(*(*a[N])(float))(int); is described as a is an N element array of pointers to a function which accepts asargument a float quantity and returns a pointer to a function whichitself takes as argument an integer quantity and returns a pointerto characters.
1. Binary Tree.
2. char* (**(*funcPtr[N])())()
http://groups.yahoo.com/group/c4swimmers/files/c.htm
http://computer.howstuffworks.com/framed.htm?parent=c.htm&url=http://www.desy.de/gna/html/cc/Tutorial/tutorial.html
Program Library (Static & Dynamic libraries) HOWTO...?
http://www.ibiblio.org/mdw/HOWTO/Program-Library-HOWTO/index.html
Online Quick reference - C Precedence Table
http://www.isthe.com/chongo/tech/comp/c/c-precedence.html
Anybody knows fully about fuunction pointers please send some material and examples.
www.newty.de/fpt/zip/e_fpt.pdf
www.function-pointer.org
Download GCC For Windows
http://sis.bris.ac.uk/~dw0857/gcc-2.95.2-crtdll.exe
http://gcc.gnu.org/
LEARN C/C++ TODAY (A list of resources/tutorials)
http://www.faqs.org/faqs/C-faq/learn-c-cpp-today/index.html
Compiler Dependants
http://dev.unicals.com/c99-draft.html#J.3
http://www.eskimo.com/~scs/C-faq/q3.2.html
Visit http://intelligentia.8m.net/ and click on 'ADA'. Now Advanced
Data Structures programs list includes Knapsack with source code. Previously I was maintaining the above mentioned site alongwith my friends. Now we're not planning to upgrade but will move the info to c4swimmers soon as I believe the info presented in that site is very much useful too (specially for Engg. students but syllabus is outdated).
C/C++ Interview Questions:
http://www.softcorp.demon.co.uk/c++2.htm
http://www.onesmartclick.com/interviews/interviews-programming.html
http://www.cpuniverse.com/newsite/archives/1999/mar/c++.html
http://www.oneparticularharbor.net/sam/interview.html
http://www.acetheinterview.com/cgi-bin/qanda.cgi?action=topics&number=5
http://www.geocities.com/Athens/Agora/3027/work/interviewQuestions.html
http://www.moskalyuk.com/jobs/cpp_5.htm
http://www.moskalyuk.com/jobs/java_1.htm
http://www.cs.unc.edu/~scheib/work/questions/
http://www.cis.temple.edu/~ingargio/cis307/assessment/interviews.html
http://www.geocities.com/SiliconValley/Park/1512/cpuz_l1.html
C/C++ Notes for Interviews:
http://leepoint.net/notes/cpp/
http://www.parashift.com/c++-faq-lite/
http://cslibrary.stanford.edu/
Data Structure Notes:
http://ciips.ee.uwa.edu.au/~morris/Year2/PLDS210/ds_ToC.html
http://www.csl.mtu.edu/cs2321.rp/www/lectures/cs2321lectures.htm
When the C precedance table http://www.difranco.net/cop2220/op-prec.htm is followed the expression would be
constructed as:
z/=(((y/z)==3)?(y/z):(x*y))
Output of the expression is 0.
I need some suggestions regarding this
following issue:
"When you edit text in a text editor, if you press Ctrl+C to copy a block of text, the highlighted portion will be copied into an OS area called Clipboard( its a buffer). You can retrieve this saved portion using Ctrl+V (Paste)".
My aim is to access this Clipboard buffer either thru a C program or any other programming language. How to do this? I did a search for this on the internet, but didnt find any useful stuff. If anyone some suggestions please share with me. This is something interesting also. Hope I can get some ideas.
http://www.codeproject.com/csharp/clipboard01.asp
I would like to know: how do we get pointers to function and use them
Visit the links:
http://www.newty.de/fpt/index.html
http://oopweb.com/CPP/Documents/FunctionPointers/Volume/CCPP/FPT/em_fpt.html
u can get the C compiler from " www.download.com"
u just enter the options in search area and get it ur own...
http://www.acms.arizona.edu/education/opti_583x/sample_code/downloadTC.html
List of C/C++ Compilers
Looking for a free C compiler or a free C++ compiler? This page lists numerous free C and C++ compilers, cross-compilers and interpreters for a wide variety of operating systems (including embedded systems).
http://www.thefreecountry.com/compilers/cpp.shtml
Please don't use TC. It's a pre-ANSI copiler. Go for gcc instead. For windows, you can get a command line version of gcc with cygwin (www.cygwin.com) If you need an IDE for it, you could go for Dev-cpp (http://www.bloodshed.net/dev/devcpp.html), which comes with mingw (gcc ported to windows) integrated.
http://publications.gbdirect.co.uk/c_book/
http://rapidshare.de/files/2371186/How_to_use_C_Pointers.zip.html
Thinking in C++
http://rapidshare.de/files/3401082/TIC2Vone.zip.html
Queries in C
1. If average insertion time is not important, but average retrieval time is important, which data structure can be used Stack or Queue or Binary Tree or Doubly Linked list?
2. How can I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
I m not very sure about it but answer of ur 2nd qn is.. char *(*(*a[N])())(); like char *(*(*a[N])(float))(int); is described as a is an N element array of pointers to a function which accepts asargument a float quantity and returns a pointer to a function whichitself takes as argument an integer quantity and returns a pointerto characters.
1. Binary Tree.
2. char* (**(*funcPtr[N])())()
0 Comments:
Post a Comment
<< Home