MSVC 10.0 c vs c ++差异

时间:2012-07-12 20:22:30

标签: visual-c++ portability c89 visual-studio-2010

我在编写下面的C程序时遇到了困难,这只是我试图理解winsock的开始。 问题是,在编译程序client.c时,我得到一个错误(C2143)缺失&#39 ;;'之前'键入' 但是,当我将源文件重命名为“client.cpp'程序编译时没有错误或警告。 我不理解语法错误,这是C中的错误而不是C ++。

#define WIN32_LEAN_AND_MEAN
#define DEBUG

#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdlib.h>
#include <stdio.h>

#pragma comment (lib, "Ws2_32.lib")
#pragma comment (lib, "Mswsock.lib")
#pragma comment (lib, "AdvApi32.lib")

#define PORT "12186"
#define BUFFERLEN 512

int main(int argc, char* argv[])
{
    /*
        Variable Declorations
    */
    WSADATA wsaData;
    SOCKET ConnectionSocket = INVALID_SOCKET;
    struct addrinfo *result = NULL, *ptr = NULL, hints;
    int addrResult;

    ZeroMemory(&hints, sizeof(hints));
    hints.ai_family = AF_UNSPEC; //unspecified so we can be compatible with IPv4 and IPv6
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_protocol = IPPROTO_TCP;
    #ifdef DEBUG
    printf("IPPROTO_TCP: %d", IPPROTO_TCP);
    #endif

    //Buffers
    char * sendbuffer; // Error C2143
    char recievebuffer [BUFFERLEN]; //Error C2143

    //Initialize Winsock
    addrResult = WSAStartup(MAKEWORD(2,2), &wsaData);
    if(addrResult !=0)
    {
        printf("WSAStartup failed: %d", addrResult);
    }
    addrResult = getaddrinfo(argv[1], PORT, &hints, &result);
    if(addrResult != 0)
    {
        printf("getaddrinfo failed: %d", addrResult);
        WSACleanup();
        return 1;
    }
    return 0;
}

编辑: C变量declorations必须先于MSVC C函数中的所有其他代码。 问题解决了。 这是C89还是仅仅是MSVC?

2 个答案:

答案 0 :(得分:1)

问题可能是变量声明的位置。使用其他变量将它们放在函数的开头。

See the last example from MSDN that can cause this error code.

答案 1 :(得分:0)

VS附带的C编译器只实现C89(严重...),因此必须在给定函数的顶部声明所有变量。