Hi friends,

     I am Balachandar.Final year B.Tech - IT student.I want to develop
a c language code optimizer.I know the compiler's can optimize the
code but its not effective always.I did a small experiment with the
below code and got a positive result for me.I want to highlight the
codes which can be optimized to get quicker execution.
       Just like this,
               for( i = 0 ; i < ( j/ 100) ; i++)
               {
                     //bla bla
               }
      If i execute this each time ( j/100 ) is calculated and takes
more amount of time.
      Instead of this,If i follow this,
               k = j /100;
               for( i = 0 ; i < k ; i++)
               {
                     //bla bla
               }
      Here j /100 is calculated only once and the execution time
reduces automatically.So i want to highlight these kind of places in a
code.
     I have few questions,
             1.Is this idea good?
             2.How should i start to develop this project?
             3.I want to develop it as a plug-in for any IDE(
preferably code-blocks).
             4.Can i get your support ilugc?

                                        --
                                       yours,
                                                    Bala.K.M.--- I
love UBUNTU.....
                                                    visit me at
http://infoqueue.wordpress.com
                                                    visit
http://klosc.wordpress.com
_______________________________________________
To unsubscribe, email [email protected] with 
"unsubscribe <password> <address>"
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to