Announcement

Collapse
No announcement yet.

i need assistance in gcc libraries (for C language)

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    i need assistance in gcc libraries (for C language)

    please what i have to download to get the all the headers available in gcc...

    i have downloaded some libs in gcc can recognize the studio.h, but i have tried math.h and i doesn't recognize...

    please can you explain me what i have to download ?

    im new in Linux so please if it is possible to use adept manager is better... :P

    cheers
    david

    #2
    Re: i need assistance in gcc libraries

    Did you install "build-essential"? I think that has the gcc libraries that you're looking for.

    It's in the repositories, or you can just pop open the Konsole and enter
    Code:
    sudo apt-get install build-essential

    Comment


      #3
      Re: i need assistance in gcc libraries

      Originally posted by dibl
      Did you install "build-essential"? I think that has the gcc libraries that you're looking for.

      It's in the repositories, or you can just pop open the Konsole and enter
      Code:
      sudo apt-get install build-essential
      ok, i wilkl see that later and replying here thanks

      but i think i have it instaled

      Comment


        #4
        Re: i need assistance in gcc libraries

        C program execution

        essential packages :

        build essential ,g++.

        Writing a c program:


        write a c program in kate(or any text editor) and save it as .c file.

        Open the terminal where u hav saved ur .c text file.

        to compile ---> gcc filename.c

        to execute--->./.a.out

        Comment


          #5
          Re: i need assistance in gcc libraries

          Originally posted by srikar
          C program execution

          essential packages :

          build essential ,g++.

          Writing a c program:


          write a c program in kate(or any text editor) and save it as .c file.

          Open the terminal where u hav saved ur .c text file.

          to compile ---> gcc filename.c

          to execute--->./.a.out
          i am using language C only not C++
          can i use that libraries ? :P

          Comment

          Working...
          X