Resources for Code Optimization Agner Optimizing Assembly Code 8,150 total views
8,150 total views
Resource Portal of GATE Overflow
The basis of this is that your ID must be in the list of authorized hosts in the server. So, for password-less login to work, generate your public key, and append it to the authorized_hosts file in the server. To create a public key, from terminal do
1 |
ssh-keygen -t rsa |
To copy to authorized_hosts file do
1 |
cat ~/.ssh/id_rsa.pub | ssh serveruser@server 'cat >> ~/.ssh/authorized_keys' |
[…]
6,593 total views, 2 views today
http://sixrevisions.com/resources/10-puzzle-websites-to-sharpen-your-programming-skills/ http://www.coderholic.com/10-more-puzzle-websites-to-sharpen-your-programming-skills/ http://comeoncodeon.wordpress.com/page/2/ http://tausiq.wordpress.com/ http://www.iarcs.org.in/inoi/contests/allproblems.php http://www.careercup.com/ https://www.interviewstreet.com/challenges/ https://www.facebook.com/ProgrammingInterviews http://blog.seattleinterviewcoach.com/2009/02/140-google-interview-questions.html http://www.cse.iitd.ernet.in/~sbaswana/Puzzles/Algo/algo.html http://www.comp.nus.edu.sg/~stevenha/programming/vol1.html http://www1.cs.columbia.edu/~kns10/interview/ http://concentratedlemonjuice.blogspot.com/2008/05/puzzles_4358.html 8,976 total views, 12 views today
8,976 total views, 12 views today
Content A little about C standards Data types Constants and variables Constant Types Integer Constant Floating Constant Character Constant Enumeration Constant String Literal Implicit Type Conversion Exercise Questions $\text{C}$ is a just a language specification and $\text{C}$ compilers (which translates $\text{C}$ code to machine code) are made by different organizations/ individuals. So, in order to […]
11,898 total views, 16 views today