Tagged Questions
-2
votes
1answer
35 views
some extra characters get added to the argument passed to the function
I am calling a function parse_consol(definition1); where the definition i.e the argument passed is of char* type and is absolute path of the xml file. when i check the (by debugging) the value being ...
4
votes
2answers
97 views
Unhandled exception at an if statement in C code
I am using Visual Studio 2010 and in the following code snippet there occurs an exception at the if statement after fseek.
int load_filenew(char *filename, char **buffer)
{
int size = 0;
FILE ...
0
votes
0answers
45 views
regex.h causes exception in VisualStudio 2010
I wanted to show my students how to use regular expresions. As they are learn programming in C, I thought it would be the best to use regex.h from GnuWin32 ...
0
votes
1answer
26 views
Visual Studio 2010 linker [C]
I read, that the best way to place functions is to create .h file with function prototypes, some .c file with those functions (including their bodies) and normal .c file with main().
This is how my ...
1
vote
0answers
59 views
Visual Studios 2010: 'File location'.exe is not recognized as internal or external command… (C program)
My Thermo professor assigned our class a computational project in which we have to calculate some thermodynamic functions. He provided us with some code to work off of which is a program that ...
0
votes
2answers
65 views
How to show more than 50 push buttons on a window?
I have created a Window and then, created 50 buttons on this Window but I can only see 10 buttons on my window. Rest are out of view since I am not able to scroll the window down.
I have added auto ...
0
votes
0answers
32 views
How to add automatic scrolling bar to a window when number of buttons exceeds window size. (winapi)
I have created a window and added almost 50 buttons to it. But the problem is that I can only see a few of those buttons as my window does not scroll up/down or left/right to show me the remaining ...
1
vote
1answer
70 views
C VS2010 - Heap corruption freeing array of pointer on struct
Hello world (hi people),
First, I'd say this is my first post, so please be clement.
As the title says, I've a heap corruption when I wants to free my object(s). I passed a couple of hours trying to ...
-2
votes
2answers
55 views
Modifying single structure member
How to edit a single member of a struct? For example I want to change entity.name from foo to foobar.
Part of the code:
void editing1(int cnt, int qq)
{
Entity z;
char tempc[255];
int ...
0
votes
3answers
54 views
Error C2371: 'eb': redefinition; different basic types - why? [C]
I have the following code:
#include <stdio.h>
#include <stdlib.h>
// helping
void sortint(int numbers[], int array_size)
{
int i, j, temp;
for (i = (array_size - 1); i > 0; i--)
...
0
votes
1answer
87 views
Visual Studio 2010 Cannot Open VC++ Include Files
really struggling with a Visual Studio issue here. I get a bunch of errors from Visual Studio after having re-installed it, about it not being able to find VC++ libraries:
Error 1 error C1083: ...
0
votes
0answers
25 views
decNumber C library Visual Studio 2010 Compile error
I am getting errors compiling the decNumber C library in Visual Studio 2010 in Windows 7 64
-bit PC.
I already tried the solutions offered at this post:
decNumber library - compile issues but did ...
1
vote
1answer
36 views
Multiple CreateFileA calls return same File Handle
I have a routine to open COM Ports using CreateFileA.
The function is created as a DLL and I have an EXE(using VS2010) to make calls to open different COM Ports.
An observation is that if I use the ...
0
votes
1answer
88 views
Unable to build my code using Microsoft Visual Studio 2010
I'm using Microsoft Visual Studio 2010. It was going fine until this morning when I try to build my code. It gave me this weird error:
C:\Program Files
(x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms
...
1
vote
1answer
45 views
error A2022: instruction operands must be the same size
Hey so I am getting this error when I run this code:
1>------ Build started: Project: Project, Configuration: Debug Win32 ------
1> Assembling [Inputs]...
1>assign2.asm(32): error A2022: ...
-2
votes
0answers
26 views
A bug that I've encountered while compiling a c file in Visual Studio
I want to compile a mesh generator,the code sourced from http://www.cs.cmu.edu/~quake/triangle.html.I created a project named TestTriangle that contains the triangle.c and triangle.h files in Visual ...
0
votes
1answer
26 views
Visual Studio 2010 C project - Install as service
I have a program built in Visual Studio 2010. The project has an installer, which was built using the "Setup Project" template of Visual Studio. It works when I want to install my program as a program ...
1
vote
3answers
37 views
Linked list - access violation… Where?
I'm trying to implement a linked list in C:
#include <stdio.h>
#include <stdlib.h>
typedef struct el{
int number;
struct el *next;
} linkedlist;
linkedlist* newel(){
...
1
vote
3answers
141 views
Why does main have an int in front of it and why could my Professor be excluding it? [duplicate]
So in my professor's slides he simply gives examples like:
main()
{...
}
Right? But when I put this in visual studio it gives an error and it works when I put int in front of main.
Why would my ...
0
votes
1answer
63 views
How to get same result in C or C++ same as toLowerCase in Java or string.lower() in Python?
I need a C or C++ function(or library) which works like String.toLowerCase() in Java.
I know that I can use tolower() for English, but what I need is a function (or library) can cover global ...
0
votes
2answers
56 views
Bubble sort not working at all, if statement not executing
I'm working on a program which is going to be used to sort students test scores and eventually retrieve the mean, median, and the mode of the scores. For some strange reason my bubble sort is not ...
1
vote
2answers
47 views
Freeing the memory - two dimensional array
I use Visual C++ 2010 and I'm trying to use free() with two dimensional array:
#include <stdio.h>
#include <stdlib.h>
#define SIZE 8
int main(){
int **matrix = ...
0
votes
1answer
70 views
CUDA “Unknown error” for unknown reasons [duplicate]
In my current project, a call to cudaGetLastError() is returning unknown error and I don't know why. The code compiles just fine, but it is not behaving how I would like it to.
Below is a brief, not ...
1
vote
1answer
63 views
Visual Studio 2010 project file filters
I have a complex C/C++ bunch of applications that I'm working on which is supposed to also be platform independent. So far, is UNIX/Windows compatible and it runs fine. However, maintaing this monster ...
1
vote
0answers
103 views
Using K&R-style C functions in C++ code
I'm trying to use oncrpc-windows project in my VC++ project in VS2010. The oncrpc exports functions in svc.h files without any arguments, but in fact the functions have arguments. For example, the ...
0
votes
1answer
107 views
getch() is working without conio.h - how is that possible? [duplicate]
I started using Visual Studio 2010 (c++) to code in C.
#include <stdio.h>
#include <stdlib.h>
int main(){
printf("test");
getch();
return 0;
}
this code works, even without ...
0
votes
2answers
90 views
dereference triple pointer
struct integer3_1 {
int value3;
};
typedef struct integer3_1* intPtr;
struct integer3{
intPtr* vPtr;
};
typedef struct integer3* intpointer3;
int main() {
int value = 5;
...
0
votes
1answer
45 views
pointer & dereference
#include <stdio.h>
#include <stdlib.h>
struct integer2{
int* valuePtr;
struct integer2* next;
};
typedef struct integer2* intpointer2;
int main() {
int value2 = 5;
...
1
vote
2answers
55 views
C code from gcc to Visual Studio Express 2010
I'm trying to move some code I have written and compiled succesfully with gcc under Visual Studio Express 2010.
I have the following header file.
#ifndef _SYMTAB_H_
#define _SYMTAB_H_
#define NHASH ...
5
votes
1answer
220 views
Efficiency between pointer and array(less assembly instructions doesn't take less time) [duplicate]
Some people said: "Any operation that can be achieved by array subscripting can also be done with pointers. The pointer version will in general be faster".
I doubt about the outcome of the above, so ...
0
votes
3answers
52 views
accessing the array inside array of structures
I have a structure as follows
struct a
{
char* ap;
char* inputs[10];
int e;
};
then I have created an array of this structure like struct a list [100];
now i want to fille the array ...
3
votes
1answer
84 views
Strange /fp Floating Point Model flag behavior
I was examining some code which uses the /fp:precise and /fp:fast flags.
According to the MSDN documentation for /fp:precise:
With /fp:precise on x86 processors, the compiler will perform ...
0
votes
1answer
55 views
visual studio command prompt is closing [closed]
i want to run visual studio(2010 or 2012) command prompt on windows8 x64. but when i click on that(C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat) opening for few seconds and ...
0
votes
0answers
66 views
OpenCV crashing with error on ntdll.dll
I work with OpenCV 2.2. The code below crashes in Visual Studio 2010 with an error:
message d'erreur: Exception non gérée ntdll.dll
In English: error message: Exception not handled ntdll.dll
...
1
vote
2answers
66 views
How do i write a static ansi-c library using visual studio 2010
When I write and compile a lib file in VS2010 I am missing something. I somehow do not mark them correctly for export.
The console command dumpbin.exe -headers mylib.lib > stackoverflow.txt ...
0
votes
1answer
102 views
Getting credis to work in a C++ solution
I'm working on a C++ project where I must connect to redis database. I'm trying to get the credis code to work but when I compile it I get these sets of errors
1>c:\c++redis\credis.c(728): warning ...
0
votes
1answer
94 views
error C2065: 'cp' : undeclared identifier [closed]
I am a new to C, I found this tutorial about string and arrays on the internet, and tried to do the program. They are using eclipse and I am using Visual Studio 2010...please help and explain.
I am ...
0
votes
3answers
495 views
error C2143: syntax error : missing ';' before 'type'
I am new to programming C.. please tell me what is wrong with this program, and why I am getting this error: error C2143: syntax error : missing ';' before 'type'....
extern void func();
int ...
0
votes
5answers
135 views
C++ For Loop Project
I am attempting to create nested for loops to output the grid below for homework. Here are my progress and instructions (this really should be simple...):
"Create an 8x8 grid like the one below. Tab ...
0
votes
0answers
32 views
Program not Dencrypting message
I am currently working on a program for fun. Which is suppose to give the user an option to encode a message, decode said message, and generate a new key. For some strange reason the program isn't ...
6
votes
2answers
91 views
generate vs2010 project file with my own source directories
In most of my c++ projects, i want to use a different directory structure from visual studio default directory structure. i.e:
/project
/build # put visual studio soluation and project files
...
0
votes
1answer
86 views
test if strstr return a valid pointer
I'm trying to use strstr function like this:
const char * pInicio = strstr(origem, chave);
if (pInicio != NULL) ...
Contrary to the expected, when I do the "if" test the compiler throws a ...
0
votes
1answer
46 views
Windows Forms Visual. How to make const. updating fields?
In visual studio 2010, how can I create dynamic field (the one that constantly updates) for example if I want to add DateTime::Now.ToString() in label and want it to update itself each second. How is ...
1
vote
2answers
90 views
How to skip including a header file to a specifc C/CPP file
I would like to skip including a header file in my newly developed code.
I am working on two projects (or solutions) in visual studio. Both have dependancy on each other.
Suppose,
Project_1.sln ...
7
votes
2answers
362 views
Correct printf format specifier for size_t: %zu or %Iu?
I want to print out the value of a size_t variable using printf in C++ using Microsoft Visual Studio 2010 (I want to use printf instead of << in this specific piece of code, so please no answers ...
7
votes
3answers
261 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 ...
-4
votes
1answer
62 views
How to play a sound file specified by user with playsound()?
How to play a sound file specified by user in an array using the PlaySound()? I'm using Windows7 and VC++ 2010.
Suppose I use the gets(song); statement to input the complete path of the song from ...
0
votes
2answers
41 views
Passed parameter changes value
Here's the code:
#include <stdio.h>
#include <stdlib.h>
void foo(int* ptr) {
printf("ptr is %x\n", ptr);
}
void main() {
int* ptr = (int*)malloc(sizeof(int));
printf("ptr is ...
-3
votes
1answer
89 views
Updating software [closed]
Let's say I released a game (software), but I created new graphics for it. Using Win32, how would I be able to get these new graphics to people who have already downloaded the software? (Note, the ...
2
votes
1answer
74 views
Can VS2010 show me which header file pulls in a declaration?
I have a header file in a mixed C/C++ project, call it A.h, that uses a type declared in another header file, say X.h. A.h does not include X.h directly, but includes other header files that, ...




