Testing

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Seven Kast USA

    #1

    Testing

    Hi
    please tell me ,how to verify the c program , testing c program ..any
    tools aval..
    by
    KAST

  • Kristofer

    #2
    Re: Testing

    Seven Kast USA wrote:[color=blue]
    > Hi
    > please tell me ,how to verify the c program , testing c program ..any
    > tools aval..
    > by
    > KAST[/color]

    Compile it, fix errors and warnings, and run it. When it runs the way
    you want it to, you're done.

    Comment

    • manju

      #3
      Re: Testing

      You can also write test driver to test it exhaustively. Test driver is
      also a simple c program wherein you can test each function throughly.
      Take inputs and then call the specific function and test whether the
      function works for all kinds of input data.

      I believe this is easy and best way to test your c program.

      Kristofer wrote:[color=blue]
      > Seven Kast USA wrote:[color=green]
      > > Hi
      > > please tell me ,how to verify the c program , testing c program ..any
      > > tools aval..
      > > by
      > > KAST[/color]
      >
      > Compile it, fix errors and warnings, and run it. When it runs the way
      > you want it to, you're done.[/color]

      Comment

      Working...