linking .../sssm.exe this is my error message how to rectify

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • manikandanshanmugasundar
    New Member
    • Aug 2010
    • 1

    linking .../sssm.exe this is my error message how to rectify

    #include (stdio.h)
    #include (conio.h)
    main();
    {
    int x,y,z;
    x=5* 3;
    z=y=6;
    printf("the value of x is % d / n;,x);
    printf("the value of y is % d / n;,y);
    printf("the value of z is % d / n;,z);
    }
  • donbock
    Recognized Expert Top Contributor
    • Mar 2008
    • 2427

    #2
    Please enclose code snippets in CODE tags.

    What was your error -- you forgot to tell us!

    I notice there are no closing quotes for any of your printf format strings. Also, do you intend newline ("\n") where you have "/ n"?

    Comment

    • newb16
      Contributor
      • Jul 2008
      • 687

      #3
      Also parentheses are not the right way to #include.

      Comment

      Working...