C is a general-purpose computer programming language used for operating systems, games and other high performance work and is clearly distinct from C++. It was developed in 1972 by Dennis Ritchie for use with the Unix operating system.

learn more… | top users | synonyms

0
votes
2answers
13 views

Segmentation fault in function

When I run debugging it points to the line: 105 (and writes "segmentation fault" in the left corner). I don't know what does red line in "Call stack" window mean... Please, tell waht it is and where ...
0
votes
1answer
10 views

OpenCV Android wrong coordinates

I'm facing a very strange issue with OpenCV for Android : when I'm accessing pixel with Mat.at it gives me the wrong pixel on the screen : A simple example : for( double y = (mat.rows - h) / 2 ; y ...
0
votes
0answers
10 views

Thread 1: EXC_BAD_ACCESS (code=1, address …) in C

I have received this error I have no clue why. The code works with initializing and assigning other variables pervious to the error but always throws this exception at the final line in this code. ...
0
votes
1answer
5 views

UCS2 and unicode C and mysql

I'm writing an application where I receive a char from network, for example char "ص" and I have the same char saved in DB from a PHP page, I can see that the char in DB is saved like this 0xd8b5 but ...
1
vote
3answers
25 views

How to sort a 2D array on the basis of a particular index in c/c?

Suppose we have a 2D array A : A[3][3] = { {1 ,4 ,7}, {6 ,2 ,3}, {3 ,5 ,5} } I want to sort it about index i (say 1) the result should be ...
-1
votes
3answers
37 views

If I had a text file of values, how would I read that file?

I have to write a program that takes a single command-line argument. The argument should be the name of a file to open for reading (And if the argument is not provided or the file cannot be opened, ...
0
votes
1answer
21 views

Context aware auto-complete

I'm trying to implement an autocomplete algorithm for a programming language. I want it to be context aware, meaning that suggestions must appear relative to the statement the user is currently ...
0
votes
4answers
44 views

how to find what libraries are installed/available on a machine for C or CPP?

this is not a outright tech question but i wanted to know if there is a easier way to find what all libraries are present in a system for a particular language and its facilities .... something like a ...
0
votes
1answer
30 views

What is wrong with my contains function?

I'm trying to create a map to store key-value pairs. I wrote a ContainsKey function – if I find the key then return true else false. I believe something is not right at my EQ statement, but I don't ...
0
votes
1answer
32 views

linked list missing element

I am writing a c program where I want to add strings to a linked list based on a condition. As my code is rly long I made a simplified version which also shows my problem. My problem is that after ...
1
vote
3answers
60 views

How does this Hashing function from CryEngine work?

unsigned int HashString( const char *string ) { const char* p; unsigned hash = 40503; for ( p = string; *p != '\0'; ++p ) { hash += *p; hash += ( hash << 10 ); ...
-1
votes
1answer
33 views

how to sum up number in front of string

How do I sum up numbers in front of strings? For example, I have input: 15 humpbacks 3 killer whales 2 sperm whales 19 belugas 2 humpbacks 2 sperm whales 7 killer whales 4 pygmy right whales 7 ...
-7
votes
0answers
59 views

Interview: debug a large C program [closed]

If you are going to debug a program with about 5000 lines of codes (written in C), given that some of its features are working fine while other are not, how are you going to fix it?
0
votes
0answers
8 views

Loading GAMS Java API in JRuby

I'm working on a Java/JRuby project which needs to be able to be able to interact with GAMS. I know we can use the Java API, but I would really like to be able to access it using JRuby if possible, ...
-5
votes
3answers
67 views

C code randomize

I am trying to randomize a variable and then trying to use it in the functions where I want to use. But, when I put the randomized variable in for loop like below and when I use that in the function ...
-5
votes
2answers
31 views

How to read only the first parameter in typedef struct?

sorry I am new to C and can not even explain the question clearly.. here is the code typedef struct _ft_device_list_info_node { ULONG Flags; ULONG Type; ULONG ID; DWORD LocId; ...
2
votes
3answers
29 views

Output to devices in Assembly

I was wondering how, exactly, one is able to read and write directly to and from I/O devices using assembly or C with no system libraries. I know, for instance, that you can render to text-based VGA ...
0
votes
0answers
20 views

How to compile source code to run on iOS

I wish to use lp_solve in an XCode project. From the multiple available files to download, and even though there is one compiled for mac os, it's dylib won't run in armv7, since it was not built for ...
0
votes
1answer
23 views

Get all hosts on LAN network in C?

Is it possible to get all the hosts on a LAN network(using C). I need to get the IP addresses and host names.
1
vote
3answers
66 views

Two dimensional array and pointers in c

int s[4][2]={1,2,3,4,5,6,7,8}; printf("\n%u,%d",s+1,*(s+1)); Ans 2665496,2665496 In two dimensional array (s+1) gives the address of second row but why *(s+1) is not giving the value 3?
0
votes
1answer
53 views

Reading wrong input from file

I am trying to write a program which should read a line and store its contents in an array, so it needs to read line by line and also read different characters in a line. For example my input is 4 6 ...
-1
votes
2answers
60 views

What is wrong with my UVa code

I tred to solve this problem in UVa but I am getting wrong answer and I cant seem to find the error ...
1
vote
2answers
33 views

Is support of Annex K in C11 required for a conforming implementation?

While answering a question that made use of some functions (sscanf_s and sprintf_s) that I thought were not standard C, Daniel Fischer brought to my attention that the functions in question were ...
3
votes
4answers
67 views

In a byte, how to replace the 4 higher bits with its 4 lower bits

I had an interview yesterday. One of the question i've been asked was: how can one replace the 4 higher bits of a byte with its 4 lower bits. We're talking on native C here, btw. For example, ...
1
vote
0answers
13 views

Flex grammar produces error: scanner push-back overflow

I'm working with a grammar which uses off-sided parsing (iow: Tabs as block delimiters). The grammar uses an indent stack to keep track of nested blocks, and attempts to wrap blocks with appropriate ...
1
vote
1answer
42 views

C base64 encode string

Folks, Trying to troubleshoot an issue with the base64 function below. About 2-3% of the requests that pass through this process return an incorrect (too short) base64output. static const char ...
0
votes
0answers
17 views

How to use multiple data types, with an ADT defined by me

I have defined a simple C API that manages a doubly linked list with a Data type, defined at a header file, acompanied with its functions (in example: print_data, compare, etc.). This way it is easy ...
0
votes
0answers
28 views

android execute c program

I have an android app which calls a C program. The C program while running returns some results via printf() which should be read in by the app. The problem is when I run the C program in the adb ...
0
votes
0answers
27 views

Overhead of Tmpfs mounting

I have a website in the makes that runs C/C++ programs. Right now, every user has their own directory for projects. But since I've decided to use another site to store their files (I'm thinking ...
0
votes
3answers
29 views

Python using ctypes to pass a char * array and populate results

I'm trying to use ctypes to create a char * array in python to be passed to a library for populating with strings. I'm expecting 4 strings back no more than 7 characters in length each. My py code ...
1
vote
1answer
51 views

Error : redifinition; different basic types

I wrote a basic recursive code but an error occurred: redifinition; different basic types Here is the code: int m=1; void countDown(int n) { /* count down */ printf("Count down: %d\t", ...
0
votes
1answer
29 views

Process crashes while checking string recived from other process

I making a some kind of project. Program need to create 3 processes. 1st one is getting a string from user, the model is: 'number1+number2+..+numbern'. After that it send string to 2nd process. 2nd ...
0
votes
1answer
53 views

Compilation errors I can't figure out

I have a piece of code that I used to run without problems. But now I'm going back to it and I just can't even compile it! The piece that is not compiling is a .c file and I think it's complaining ...
1
vote
2answers
37 views

Is there a correct way to measure performance when writing low-level code?

I am writing speed optimizations for low-level C/x64 code and I am wondering if there is any standard way of measuring which choice is faster reliably. My current technique when comparing technique A ...
-5
votes
1answer
34 views

thread pool in c/c++

A thread-pool is a collection of a fixed number of threads which are created on application startup. what data structure should be used to implement thread pool. How to assign particular thread from ...
-2
votes
1answer
53 views

Segmentation Fault on using pointers instead of array

while(!feof(fname)) { fscanf(fname,"%c",buf); printf("%c",*buf); buf++; } When I use this code, the compiler gives me a segmentation fault(core dumped). But instead of this if I ...
4
votes
2answers
86 views

Using typedef for an array to declare a new type

I know how to use typedef in order to define a new type (label). For instance, typedef unsigned char int8 means you can use "int8" to declare variables of type unsigned char. However, I can't ...
1
vote
3answers
66 views

how to the output of 4 digit number to 2 digit

I want to write the last 2 digit of a year. For instance, if I started with an input value "2012" I would want to generate an output value of "12". Is they any option in fprintf in which it will take ...
0
votes
1answer
26 views

Efficient way of obtaining process information?

I have looked at procps. I was wondering if there are any major advantages to using procps-ng instead. I am also open to suggestions for any other library that performs similar tasks.
0
votes
0answers
23 views

Powershell script called from C does not open OleDb Connection

When calling a Powershell script from a C function, my database connection does not open. However when I log on to the server as the user that runs the C program and launch it from a DOS prompt, ...
0
votes
0answers
12 views

NtFsControlFile seems to fails on files < 728 bytes when compressed

I was using the SDelete application provided by System Internals to delete files in a secure way but came across a issue where some files where being left. I managed to get the SDelete source code and ...
2
votes
2answers
62 views

Remove elements from pointer array

I have a program in which I need to work with pointer arrays. My problem is that I do not know how to delete element i from pointer p (p[i]). I will detail the problem below. I have the structure: ...
0
votes
2answers
56 views

Which C/C++ compiler dose Xcode use?

I just started to get my hands dirty with C/C++ and still getting my head around the different concepts (most my time I have been writing Java). I'd really like to know which C/C++ compiler is used ...
0
votes
1answer
49 views

In C, is there a better way to calculate uncertainty values?

What I've been doing is using a #define UNC (uncertainty) to toggle on and off the functionality for calculating x (the value) and dx (the uncertainty). It works pretty well, but it's not easy to read ...
-1
votes
4answers
99 views

Defining smallest possible sized macro in C

I want to define a boolean macro in C that uses less than 4 bytes. I have looked into this, and maybe it is possible to define an asm macro, with gcc, that could be less. It is important that the ...
0
votes
0answers
14 views

Getting mathgl working with c

I'm trying to get mathgl working on a CentOS 6.3 machine, I've installed mathgl-2.1 but I can't seem to get my code to compile... Here's some C code I found on the net for an example (mathGL.c): ...
0
votes
1answer
34 views

Implicit pointer cast in parameter and argument of functions

If 2 function definitions are: void func(struct Node *arg){...} void func2(void *arg){ func(arg); ... } but they are called like: struct Node *node = (char ...
0
votes
1answer
21 views

CPLEX, C coding

I am coding in C an optimization problem on linux. I am using CPLEX to solve this optimization problem. I wrote my code and everything, but when i'm trying to compile in the terminal, I am getting ...
1
vote
3answers
77 views

Ternary operator vs if statement: compiler optimization [duplicate]

Is this: int val; // ... val = (val != 0) ? otherVal : 0; less efficient than this: int val; //... if (val != 0) val = otherVal; ? Are compiler able to optimize the ternary operator? The ...
-2
votes
0answers
45 views

C versus C++ for a cross platform API [closed]

From client perspective, what is the best language for a cross platform API that does basic things (I/O and computations, but no UI, no network, etc.)? What about interoperability with C#, Java, ...

1 2 3 4 5 1928