MY mENU


Friday 10 February 2012

Advantages of C

    Advantages Of C     
     1. C is a small , efficient ,powerful and flexible language
     2. C is close to computer H/W (architecture).
     3. C is standardized, making it more portable compare to other languages.
     4. It contains libraries.
     5. Many other languages borrow from Csyntax for ex: Java, java script, perl.
     6. UNIX was written in C.

   
Dis Advantages Of C:


     1. C is designed for professional users.

     2. C was not able to automatic checking compare other languages.
     3. C does not support modern concept like OOP’s and multithreading.




A sample of C Program
      
      #include <stdio.h>     // Preprocessor
        main ()                // main function
      {                      // opening the brackets
      Printf(“Hello”);
       }                      // close the brackets
.
    

No comments:

Post a Comment