CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: dedite

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,185

    fatal error LNK1120

    I can not figure out the error codes from this program.

    #include <stdio.h>
    #define NUMS 7 /* establishes NUMCOLS as 5 */

    int main()
    { /* start of main */
    void display(int channels [NUMS]);...
  2. error C2106: '=' : left operand must be l-value

    Trying to show the Row totals and the Column totals.

    #include <stdio.h>

    int main()
    { /* start of main */
    #define NUMROWS 5 /* establishes NUMROWS as 5 */
    #define NUMCOLS 5 /* establishes...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured