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
23 views

Sequence Stack: uninitialised value was created by a heap allocation

Just now I wrote a simple data structure Sequence Stack in c, and met a problem. ==8142== Use of uninitialised value of size 4 ==8142== at 0x408F4AB: _itoa_word (_itoa.c:195) ==8142== by ...
0
votes
0answers
6 views

Windows socket errorcode 10055

I've developed an app that uses sockets over windows. It works perfectly but after some time, the internet connection begin to fail and finally I get this error (10055), which means that my app run ...
0
votes
1answer
23 views

strcpy() not returning the right value

I'm trying to read from a file where I have to tokenize a line and add it to the list. Instead of pasting the whole code, this is where the problem is happening. char line [100]; ...
0
votes
4answers
40 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 ...
3
votes
4answers
55 views

Multi-threading with long linked-list

I have a algorithm question here. There are 10 threads in the system and you are given a link list with 10 K elements in it. How do you do the thread synchronization (addition deletion etc.) so that ...
0
votes
2answers
28 views

Getting int values from SQLite

I heard of using sqlite3_prepare_v2 instead of sqlite_exec to get integers from database, but I failed to find any examples. This page wasn't helpful also. Now I am getting strings from database, so I ...
0
votes
3answers
33 views

What is the difference between strtol and strtoul?

I met some unexcepted result of strtol in c Here is the sample program. #include <string.h> #include <stdio.h> #include <stdlib.h> int main() { printf("%x\n", ...
0
votes
5answers
35 views

declaring variables as locally as possible and switch statement

Some famous code style books recommend declaring vars as local as possible( http://stackoverflow.com/a/10205934/700825) My question is : Is switch statement exempt from this rule? For example if ...
0
votes
0answers
20 views

ListCorrelate vDSP equivalent for convolution of {{a,b,c},{d,e,f}} and {{g,h,i},{j,k,i},{l,m,n}}

If I ListCorrelate two list of real doubles {{a,b,c},{d,e,f}} {{g,h,i},{j,k,i},{l,m,n}} in Mathematica I get {{a*g + b*h + c*i + d*j + e*k + f*l},{a*j + b*k + c*l + d*m + e*n + f*o}} Can ...
4
votes
7answers
655 views

Passing a constant integer when function expects a pointer

What's the best/most cannonical way of passing in a constant integer value to a function that expects a pointer? For example, the write function write (int filedes, const void *buffer, size_t size); ...
5
votes
6answers
175 views

How to determine if returned pointer is on the stack or heap

I have a plugin architecture, where I call functions in a dynamic library and they return me a char* which is the answer, it is used at some later stage. This is the signature of a plugin function: ...
0
votes
0answers
10 views

Function to send GET requests in LoadRunner using .h library?

I have script in LoadRunner, which sends POST requests using functions in .h library. I must write new function and add it to .h library to have possibility to send GET requests to web-service in ...
1
vote
1answer
51 views

C equivalent of matlab angle function

I am dying here. So I have a complex number(-4.9991 + 15.2631i). In matlab if I do angle(-4.9991 + 15.2631i) = 1.8873 I thought that angle basically calculated like atan(15.2631/-4.9991) = ...
-1
votes
4answers
42 views

Why isn't strtok correctly separating tokens?

I'm trying to adapt the following working code: http://www.cplusplus.com/reference/cstring/strtok/ as follows: #include <stdio.h> #include <string.h> int main (int argc, const char * ...
3
votes
6answers
58 views

assigning pointers vs memcpy/memmove

Hi there I have a question pertaining to C pointers (especially void *) I'm working with void * pointers that point to arbitrary blobs of memory that act as cells for a Vector implementation. These ...
1
vote
1answer
157 views

Error importing public key using cryptoapi CryptImportKey

I want to import public key blob to a CSP. but error occurred. BYTE pbData[] ...
-3
votes
3answers
62 views

How can I print “d” of pop stack as a binary number? [closed]

#include <stdio.h> #include <stdlib.h> int push(int); int pop(int); int main() { int d,a,i=0,head=0,stack[head]; printf("GIVE AN INTEGER >0 AND <128 :"); do { ...
-3
votes
0answers
20 views

How you would implement this redirection in C?(pipe redirection dup)

How you would implement this redirection in C? with linux syscall. cat -A < in.txt | wc >> out.txt
0
votes
2answers
53 views

make sure one cpu has written a “double” before another cpu read that “double”?

I'm going to running one OS on a dual-core ARM Cortex-A9 CPU (one core runs Linux, the other one has no OS). In the no-OS side we write a 64-bit double to DDR memory, then the Linux side reads it. ...
-6
votes
4answers
43 views

C language What this code mean ? if(button & 1)==1

I am confused about this.. That what does it mean. What this code will do.. if((button & 1)==1) I have tried to search it on net but i couldn't find a good answer.. Thanks in advance..
-1
votes
1answer
14 views

write char[] to NSOutputStream and read from NSInputStream

I am trying to write to NSoutputStream as below: +(void)write:(char[])data { int size=(sizeof data) / (sizeof data[0]); [outputStream write:(const uint8_t *)data maxLength:size]; } is this ...
25
votes
9answers
6k views

How can I get my C code to automatically print out its Git version hash?

Is there an easy way to write C code that can access its Git version hash? I wrote software in C to collect scientific data in a laboratory setting. My code records the data it collects in a .yaml ...
0
votes
0answers
5 views

Access a sector from USB flash memory in linux

I am studying the FAT32 manual, now i want to write a program to browse the device. How to read a specific sector of the device, i do not want to load the entire device as a file into memory, please ...
0
votes
2answers
37 views

dynamically allocating an array of linked lists

So I'm trying to make an array of linked lists, at first I had the following code: typedef struct node{ int data; struct node *next; } node; struct ko { struct node *first; struct ...
0
votes
4answers
85 views

Reverse string array

I'm trying to reverse an array of characters and place it in a new array. It doesn't seem to be returning anything. Here is the code below, I can't figure out waht is wrong. Any pointers? (No pun ...
0
votes
0answers
7 views

Unittesting with glib results in segfault with g_test_fail()

I have been trying out glib for unittesting and have run into trouble. I am interested for a way to not abort the remaining part of the test if a single part fails. I have been trying to do this using ...
-3
votes
0answers
13 views

carmel installing error : undefined reference to MappedFile::kArchAlignment

in installing carmel a finite state transducer i got a bunch of errors about undefined reference to a some thing /usr/local/include/fst/lib/util.cc:86: undefined reference to ...
1
vote
2answers
28 views

Getting the input strings into an array and sort the array of strings alphabetically

I want to input some strings and sort them alphabetically, at most 100 strings and the length of each string is less than 50, but I get a Segmentation fault. #include <stdlib.h> #include ...
-2
votes
2answers
69 views

c program to read the data between 2 strings [closed]

I have a text file called new.txt and it contains the following element vv vinoop raju kiran regu ramu I want to read the only the data between "vinoop" & "regu" print it on other file so i ...
2
votes
0answers
41 views

Addressable memory and relation with buffer overflows

Reading about buffer overflows, I came across the sample code given below:- void function(int a, int b, int c) { char buffer1[5]; char buffer2[10]; } void main() { function(1,2,3); } It's from ...
2
votes
2answers
34 views

__stack_size__, __stack_end__ symbols in 'C'

Is there a direct method in which the values of the stack_start and stack_end symbols can be referenced in a 'C' function? I can do this using a bit of assembler to read each symbol and place it to a ...
-7
votes
3answers
74 views

Faster Code Anyone? :)

EDIT: shaved roughly 10% processing time with: register int16_t *libwordPointer = libword; int16_t *nReset; register int16_t *wordsPointer = words[word]; int16_t *mReset = wordsPointer; for( int ...
0
votes
3answers
55 views

Generic matrix: how to pass a type in a function argument

I created a generic matrix structure like this: typedef struct mat_t { /** * \brief matrix structure */ unsigned int c, l; void **matrice; }* mat; My problem is to learn how to allocate ...
0
votes
2answers
30 views

Seg fault after pthread_create (

I cannot for the life of me figure out why this is seg faulting. It is seg faulting in get_ranks_parallel on the line for (struct node* node = data->plist->head; node!=NULL; ...
1
vote
0answers
22 views

arp request and reply using c socket programming

I am trying to receive and send arp packets using c programming in Linux (ubuntu) My program works fine [ with out any error ], but i can not get the packets from wireshark. source code: my source ...
36
votes
9answers
18k views

What is the difference between NULL, '\0' and 0

In C, there appear to be differences between various values of zero -- NULL, NUL and 0. I know that the ASCII character '0' evaluates to 48 or 0x30. The NULL pointer is usually defined as: #define ...
1
vote
0answers
18 views

Is there a Java/C library which allows identify multiple keyboards?

I need to connect more than one keyboard/mouse with a single computer. Manymouse library can identify different mouses, but is there a library which can identify different keyboards? I mean, when I ...
1
vote
0answers
13 views

Application was compiled with png.h from libpng but running with another on different Linux systems

I develop application using QT + Opencv. These two libraries use libpng. And when I run application on some platforms I get warning: "Application was compiled with ... png.h from libpng... but ...
-1
votes
2answers
77 views

Does symbol visibility protect shared library from abuse/crack? [closed]

The GCC visibility feature enables us to strip off those APIs in our shared library that we don't want the customer to see. Indeed we can't use ldopen to call those hidden functions, but I wonder if ...
24
votes
12answers
7k views

Visual Studio 2010 very slow, unusable

I've searched for this topic but can't seem to find posts that relate exactly to what I am experiencing. I have a Visual Studio solution that I need to work on, its fairly large and contains 16 ...
2
votes
6answers
80 views

add and remove last bit

I am trying to determine the next and previous even number with bitwise operations. So for example for the next function: x nextEven(x) 1 2 2 2 3 4 4 4 and for the ...
1
vote
2answers
42 views

How to read and store 2 float values seperated by a comma from a file into two arrays where each float is stored in one array

my text file format is this: 3.2 , 5.6 444.2 , 555 112.34 , 32.3 i want to read the above information present within file name file.txt and store it in two arrays a,b where a will have the float ...
1
vote
0answers
18 views

blkid_get_cache seems to leak memory

I am doing some linux programming and I encountered a situation where a library function from the blkid library leaks some memory... There is not too much documentation about it ...
1
vote
3answers
88 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 ...
11
votes
6answers
596 views

Best practices and tools for debugging differences between Debug and Release builds?

I've seen posts talk about what might cause differences between Debug and Release builds, but I don't think anybody has addressed from a development standpoint what is the most efficient way to solve ...
0
votes
6answers
73 views

Why does the following line of code cause my program to seg fault?

In the following code: #include <stdio.h> #include <string.h> int main (int argc, const char * argv[]) { char input[20]; fgets(input, sizeof(input), stdin); char * pch; ...
0
votes
2answers
40 views

How to use AT commands in C language

My project consists of a part that has to send sms via GSM modem using AT commands. I have learnt using these commands via hyper terminal and putty. What I want is that how can I use these AT commands ...
3
votes
2answers
400 views

CPU Temperature for Linux OS / Intel 64 bit Architecture

I have come across several post to read CPU temperature ad fan speed[ 1, 2], but could not find any post for the 64-bit i7 Intel architecture (quad core) using Linux OS. Can any one point to any ...
-1
votes
0answers
23 views

How to get the new elemet in a frame using opencv

I'm trying to write a program in C++, using OpenCV, in which I get the new object that appears in the frame I tried the to subtract the new frame from the old one but it doesn't really works. Any ...
1
vote
6answers
90 views

Why does my C compiler give a warning?

Beginner question. I have the following code: char input[10]; scanf("%s", &input); My compiler throws the following warning: warning: format '%s' expects type 'char *', but argument 2 has ...

1 2 3 4 5 1929