1
vote
1answer
57 views

Is Visual Studio 2012 suitable for C (not C++) professional programming? [closed]

I've to develop a service for Windows7 in C. I've to use a few C libraries (GNU Scientific Library among others) and I'm wondering about what IDE to adopt. With C#, I'm used to both Visual Studio ...
2
votes
1answer
107 views

Use C library in C++

I have C library with a header file. Now i want to make a wrapper in C++ in order to use it in .NET. When i include the library, the compiler reports an syntax errors regarding the variable types ...
1
vote
1answer
50 views

Call C function from inline assembly VS2012 - segfault?

Well, I've read the questions that are similar to mine but I haven't been able to solve this problem yet. I've also checked this which could, obviously, solve my problem. But it didn't. I have a C ...
0
votes
1answer
33 views

Is there separate intrinsic for bitset64 in Visual Studio C compiler?

I need to set nth bit of 64 bit integer to 1; There is an intrinsic (documented here http://msdn.microsoft.com/en-us/library/z56sc6y4(v=vs.90).aspx) : unsigned char _bittestandset64( __int64 *a, ...
0
votes
1answer
38 views

Finding Reasons for Linking Errors in Visual Studio

I'm in the process of porting one of my project to an existing framework I've been developing. As a result I have two project, one that's the original I developed and then the ported one. The ...
1
vote
2answers
38 views

Prefix headers in other IDEs than Xcode

The prefix header functionality in Xcode comes in handy quite often and I was wondering if other IDEs provide a similar functionality? Or is there even a way on compiler level? I've been looking for ...
1
vote
1answer
102 views

Cuda not giving correct answer when array size is larger than 1,000,000

I have wrote a simple sum reduction code which seems to work just fine until i increase array size to 1 million what can be the problem. #define BLOCK_SIZE 128 #define ARRAY_SIZE 10000 cudaError_t ...
0
votes
1answer
47 views

Output float to debug

I was wondering if there was an alternative to OutputDebugString but for floats instead? As I want to be able to view in the output in Visual studio the values.
-1
votes
1answer
50 views

How to pass RGBQUAD as parameter?

As a learning excersize, I'm trying to pass a RGBQUAD as a parameter to a method which just blackens the struct members. The program crashes when 'black_quad' is called. Where am I going wrong? void ...
0
votes
1answer
76 views

How to Create C DLL using Visual Studio 2012

I've been doing all of my development using C# in Visual Studio, first 2010 and now 2012. I need to create a DLL using C language for the project I'm working on. Only when I do File | New Project, I ...
1
vote
1answer
60 views

C - how to use vt100 code in windows

i try to move the cursor in console. and i find out that vt100 code could do this. #include<stdio.h> int main() { printf("123456789\n"); printf("\033A"); printf("abcdefghi\n"); ...
3
votes
3answers
82 views

Confirmation before closing a C program (solved, thank you!)

I'm having trouble with asking for confirmation before closing a program in C. I am looking for the program to initiate the confirm exit loop when 0 is entered however the program currently closes ...
2
votes
2answers
78 views

Simple Array Coordinate Display Matching

I am attempting to create an array which takes user input and breaks at 99 99 but the multidimensional array does not stop taking inputted values. Another issue is getting the values to display on ...
0
votes
1answer
66 views

Convert codepoint to wchar_t in C [duplicate]

If I know the unicode codepoint of this 2 chinese character 你好 in str How can I convert this char * str codepoint to chinese character and assign it to wchar_t * wstr ? char * str = "4F60 597D"; ...
2
votes
1answer
41 views

How-to find issues concerning includes - visualize inclusion tree [duplicate]

Scenario From time to time I get compiler errors in system headers. Currently for example: c:\Programme\Microsoft Visual Studio 9.0\VC\ce\include\streambuf(55) : error C2143: syntax error : ...
2
votes
0answers
88 views

Can't understand why my Window Size math is not working with some particular compiler and OS [duplicate]

I used to do the following to create a window of an 800*600 client area: dwStyle = WS_OVERLAPPED | WS_THICKFRAME | WS_BORDER | WS_DLGFRAME | WS_SYSMENU | WS_MINIMIZEBOX; int nPositionX = 20, ...
1
vote
1answer
52 views

Can't compile c in visual studio 2012 part II

In my previous question I asked about compiling c where there are naming issues because C++ has more reserved words than C I now realise after some renames, that was the thin end of the wedge. ...
0
votes
3answers
88 views

Can't compile C in visual studio 2012

I have an older c project that uses many variable names that cause it to not compile in c++, new, this etc. So to try and see if I can get it compiling I have done this: New empty C++ project Added ...
2
votes
2answers
137 views

Unhandled Exception Error C Programming

I'm a novice programmer, with probably about 8-9 weeks experience of C programming. Currently I am working on creating a program that will read some lines from a text file, store them in a structure, ...
0
votes
2answers
46 views

Visual Studios (2012 pro mainly) file location of defaults for <inherit from parent or PROJECT DEFUALTS>

I always add the _CRT_SECURE_NO_WARNINGS to all of my C/C++ projects in the Preprocessor Definition tab in the Project Properties. There is the drop-down for <edit> and <inherit from parent ...
7
votes
3answers
254 views

How can I allocate all the availble memory in visual studio for my application?

I want to render 4 millions triangles in my windows based software which is written in Visual Studio C++ 2010 (Build in Release Mode). When I render 3.9 millions triangles, the total RAM memory ...
0
votes
4answers
5k views

error LNK2019: unresolved external symbol in a multiple projects solution

I have a visual studio solution with multiple projects. One of them, "MyProject" is a static library (.lib). The project, among many other classes has two classes "A" and "B". A.h: #pragma once ...
1
vote
2answers
177 views

Printing Copyright Symbol in Visual Studio 2010

I have been struggling to print Copyright symbol in Windows using Visual Studio. I understand that 0xA9 is the ASCII code for Copyright symbol and it works on none windows platform. But on Windows I ...
2
votes
3answers
142 views

How to know if a project is C or C++ in Visual Studio?

How does Visual Studio know if a project is C or C++? Is there any configuration or build parameter that indicates this ? Does VS use C compiler for C, and C++ compiler for C++ ?
0
votes
1answer
78 views

Hook git command into visual studio pre build step

I'm using git as version control and I'm trying to hook the SHA1 of the current commit into a visual studio build as a define. So basically I want to turn the output of the command git rev-parse ...
1
vote
0answers
100 views

Does Visual Studio C/C++ support automatic software prefetching?

Compilers like Intel and IBM's xlc can insert data prefetch instructions automatically. I have some code that could be helped with prefetching at the cost of readability. That is, there's a natural ...
0
votes
1answer
78 views

Initialize array from embedded file

I write program in C in Visual Studio 2008. I want to have array initialized from binary file. But i don't want to have binary file alongside with .exe file. So I must embed binary file into my .exe. ...
1
vote
0answers
47 views

Manually configure indentation monodevelop

I'm a long-time Windows user, going with Linux mostly for the terminal and for networking purposes. The thing is, I really love the VisualStudio code editor window. I don't really handle projects ...
-5
votes
3answers
85 views

How does one determine whether a C file is gcc compilable? [closed]

One of the requirements for my college project is that my C file must be gcc compilable. I do not know what this means and I do not know how to go about determining whether a C file is gcc compilable ...
0
votes
1answer
29 views

Visual Studio 2008 error:ATL

Getting this compilation error: Error 4107 fatal error C1189: #error : ATL requires C++ compilation (use a .cpp suffix) C:\Program Files\Microsoft Visual Studio ...
4
votes
2answers
398 views

Open Source C/C++ Code coverage on Windows/Visual Studio

I am using Visual Studio 2010 for C/C++ development. I am using Professional but not higher editions, so I do not have code coverage built-in. I have seen many questions on stackoverflow regarding ...
0
votes
1answer
118 views

Build C project to call functions from C++ library in the same solution in Visual Studio

Is it possible in Visual Studio to have one project with C++-library and the other one written in C in the same solution, and to call functions from this library using C? What I have in library ...
0
votes
0answers
87 views

Postgresql ODBC driver build

We are trying to compile source of ODBC drives for windows with no succeed. Es we work with Access as frontend and our location is Spain, we need to translate every comma as dot (client->server) and ...
1
vote
0answers
87 views

C code for enabling theming in Windows

I have a small code below that is suppose to enable/disable themes in Windows 7. This is a Win32 console app that I compile with Visual Studio 2010. When executing, it works well for disabling ...
1
vote
1answer
90 views

Creating text file in C, using VC++ Express

Okay this is kind of an odd question, but I have no idea why this doesn't work... #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_NAME 15 #define MAX_SUBSEC ...
-3
votes
3answers
119 views

fstream with C program [closed]

May I know how to use fstream in C program to read and write to a file? Hope there's a tutorial for me to make it easy for me to understand. I heard most of them is using the fstream for C++, but less ...
0
votes
0answers
86 views

Error in EPROM Sequential read

I'm working with EEPROM (through I2C) driver. I can write and read a single byte from EEPROM. However, if i try Sequential Read (Multibyte Read), I face problem in reading: I can read values from ...
0
votes
2answers
109 views

C++ Error C2440 when using exisiting C source

I am having an issue where I have a C2440 error when compiling a C++ project in VS2005. The error is due some existing C code in another project which I depend on which casts a void pointer to either ...
0
votes
0answers
91 views

Error LNK2001 and 2019 with SDL

I am trying to continue an old project that I have found. It's a RPG game using SDL. It was a VS2010 solution, I'm now on VS2012, so the solution have been update by Visual. But I'm not able to ...
0
votes
0answers
35 views

MSVC error LNK4013 when porting C code from GCC to VC

I have a well tested C program that works fine with GCC but not all parts are strictly ANSI C.(it's a tcl extension written in C.) Whether I want it or not I have to port it to MSVC. Now the program ...
0
votes
6answers
103 views

How can I extract file paths from a string with multiple paths in c c++?

I am using Visual Studio 2010 C++ and I have a long string with multiple paths like this. C:\eula0.txt C:\eula1.txt C:\eula2.txt C:\eula3.txt C:\eula4.txt all above file paths are in a single ...
3
votes
1answer
206 views

Automatically translating C source into C89 or C90

So I'm working on this C/C++ library, and I'm using the GNU compiler, which supports the latest standard of C and C++. I want to make my library compatible with the VC++ compiler which only supports ...
0
votes
4answers
103 views

I want to use the full range that the 64-bit integer can take. How can I do it in x86 Visual Studio 2008?

I included the stdint.h in my solution and used uint64_t, but the result was not what i wanted. Here is the code that i used. #include <stdio.h> #include "./stdint.h" void main (void) { ...
0
votes
1answer
42 views

WildMagic 5.9 on Visual Studio 2012

I am trying to build WildMagic 5.9 on Visual Studio 2012 but here are error: Error 3 error C2039: 'greater' : is not a member of 'std' ...
0
votes
1answer
88 views

Strange thing about pointers

I have some misunderstanding about VS C++. In version 2010 the code below works fine: I can get a string and I can free memory afterwords. #include <stdlib.h> #include <string.h> ...
1
vote
2answers
79 views

DNS Server in c/c++ for windows

Is there any DNS Server written in C/C++ which can be compiled using Visual studio on Windows? I have found many DNS servers, but all of them seem to run only on Linux or require a MinGW compiler.
1
vote
3answers
152 views

DNS Server in C to return IP Address and port number

From my understanding of a DNS Server, a simple explanation is that for a given hostname the DNS server uses a lookup table to return the IP Address of the hostname. For one of my projects, I used to ...
0
votes
1answer
52 views

error LNK2001: unresolved reference with Pro*C code with Visual C++

I'm getting an error when trying to build a DLL file with a C file preprocessed with Pro*C, the command I'm using to build my dll is: link /NOLOGO /DLL /SUBSYSTEM:WINDOWS /NODEFAULTLIB:libc.lib ...
2
votes
2answers
165 views

Unable to remove Linker error in Visual Studio

I am trying to use OpenCv in Visual Studio 2012. I followed every single step this question has provided and every other that can be found on the internet. I even tried to work with different versions ...
1
vote
0answers
22 views

Build Velocis 3.5 example errors under VS

I build standard example using following make file default: dquery.exe CFLAGS = /DNT_INTEL /DWIN32_NT /DWIN32 -c /W3 /Od /Zi /I..\common /DNT /DMSC /MD OBJS = dquery.obj dquery.obj: dquery.c cl ...

1 2 3 4 5 12