Undefined symbal _ print in module test.c

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • suryakantyadav
    New Member
    • Nov 2006
    • 5

    Undefined symbal _ print in module test.c

    Hi,
    I am beginer to c language.
    When i compile a programe, got an error msg : Undefined symbal _ print in module test.c

    and my programe is like this....
    main ( )
    {
    print ( " Hello, World " );
    }

    Pls help

    thx in advance
    Last edited by suryakantyadav; Nov 8 '06, 06:07 AM. Reason: spell mistake
  • lokesh yadav
    New Member
    • Nov 2006
    • 5

    #2
    hi there no print function in c u are using print function instead of printf function
    use these code


    main()
    {
    printf("hello world");
    }

    Comment

    • suryakantyadav
      New Member
      • Nov 2006
      • 5

      #3
      thanks lokesh......



      Originally posted by lokesh yadav
      hi there no print function in c u are using print function instead of printf function
      use these code


      main()
      {
      printf("hello world");
      }

      Comment

      Working...