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
1answer
13 views

pure C generic bidirectional hashtable with specific requirements

I have to design and implement a data-structure, which is like bimap, bidimap or dualmap, i.e. hashtable in which values can be used to extract keys and of course in reverse direction. Normally, it ...
0
votes
0answers
8 views

What of lack this CRC-CCITT (Initial Value 0xFFFF) Encode?

I'm create CRC-CCITT Encode (Polynomail 0x1021 and Initial Value is 0xFFFF) It is correct 8bit, 16bit, 24bit, 32bit ... (1 Byte, 2Byte, 3Byte ...) But not correct answer 12bit, 20bit, 28bit ...
0
votes
0answers
7 views

Using glib to send RAW BYTES to the ftdi device over USB

I am developing a simple application in C with GTK+2.0 GUI, on Linux of course, this application is designed to control a device which is connected over the USB port and is using FTDI driver to ...
0
votes
0answers
5 views

Where is documentation on the embedding API for the Ruby interpreter?

I am looking for a comprehensive, online, documentation resource regarding the embedding of the Ruby interpreter into C or C++ programs, and the API(s) for that purpose. The section on this in the ...
0
votes
0answers
4 views

Periodic thread fails real-time in Xenomai

I'm creating a periodic thread which outputs a square signal on an analogic output. I'm using Posix Skin and Analogy from the Xenomai API. I tested the real-time performance of my code using an ...
0
votes
0answers
16 views

Undoing the effects of ungetc() : “How” do fseek(),rewind() and fsetpos() do it?Is buffer refilled each time?

Huh!!How shall I put the whole thing in a clear question!!Let me try: I know that the files opened using fopen() are buffered into memory.We use a buffer for efficiency and ease.During a read from ...
0
votes
0answers
10 views

Cannot connect a button click to a C function using GTK WebKit Webview

I am creating an application where the GUI is presented using HTML and JavaScript and the button actions need to interact with hardware attached via USB. I have all the hardware related functions as a ...
2
votes
4answers
39 views

How is this pre-standard function declaration compiled with modern compiler?

I found the following declaration code in the very early sources of C compiler main(argc, argv) int argv[]; { return 0; } I tried to run it on ideone.com compiling it in "C" mode with gcc-4.7.2 ...
0
votes
1answer
23 views

Easy to use shared memory library in C

I am new to writing applications that use shared memory. I am writing a C application and I want to use shared memory. I know that it is very easy to shoot oneself in the foot when using shared ...
1
vote
3answers
42 views

Is there a way to use scanf with the “if” and “else” statements?

I have to create and call a function from main. Then I have to call scanf to read two integers and print out the bigger one. Then I have to do another scanf, but this time with doubles instead of ...
4
votes
6answers
81 views

c define multiline macro?

#define DEBUG_BREAK(a)\ if ((a)) \ {\ __asm int 3;\ } I have defined a macro as above, and try to use it #include "test_define.h" int main() { DEBUG_BREAK(1 == 1); return 0; } ...
0
votes
5answers
44 views

Dynamic C, How to add 2 “hours” as 4 digit Integer

I need to know how can I add 2 "hours" as integer? It is 24-h format int add2Hours(int _time1,int _time2) { } sample: 13:45 is: (hhmm) 1345 1345 + 30 returns 1415
0
votes
2answers
24 views

Converting a single user application to a multi user application

I am working on a legacy C application that is currently single user. I want to modify it so that it is multi user. The current application makes uses user permissions to load relevant data (for the ...
-5
votes
0answers
33 views

Function In C that Input a File and return each string at a time

Problem: C function that input a file and return a String at a time. For Example:if in a file say input.txt hello world please help me Then the 1st function call should return ...
1
vote
4answers
26 views

Explanation of strange error in c

Just as I compiled: #include<stdio.h> main() { print("hello\cworld"); } I got this error/output: warning:unknown escape sequence '\c' ...
-7
votes
0answers
30 views

C program to read the content from a text file between two lines and copy it to another file [closed]

For example, if the text file contains data like: with header; with linker; package body(* some text ) vin float32=2.0; mis float32=3.0; raj ...
0
votes
1answer
18 views

fseek(stdin,0,SEEK_SET) and rewind(stdin) REALLY do flush the input buffer “stdin”.Is it OK to use them?

I was thinking since the start that why can't fseek(stdin,0,SEEK_SET) and rewind(stdin) flush the input buffer since it is clearly written in cplusplusreference that calling these two functions flush ...
1
vote
0answers
13 views

Compiling fft using gcc fails because of parmacs_config.h

I have downloaded the source codes of Splash2 from here and i tried to compile fft.c using gcc command on my own machine but i got this error : fft.c:62:28: fatal error: parmacs_config.h: No such ...
-6
votes
0answers
25 views

cprocess is terminated due to stackoverflowexception [closed]

i download a file to C language. but i can't compile it. it gives error"process is terminated due to stackoverflowexception" download the file:[1]: http://uplod.ir/7bjigzm2ivsw/H.rar.htm please ...
0
votes
1answer
10 views

curl NSS -12286 error in TLS handshake

I am getting NSS -12286 error while trying to load the https page using the ca certificate using cacertinpem.c curl c code. i am using cacert.pem file in the code alog with path. but same thing is ...
4
votes
1answer
85 views

C++ getchar() is there data still waiting to be read

I am implementing a key reader program in c/c++. I know that the unbuffered getchar function will return little data values of keys. For all ASCII keys (a-z, A-Z, 1-9, punctuation, enter, tab, and ...
0
votes
1answer
22 views

PRNG library which support store/restore sequencing state?

I am writing some functional style code which needs random number. State mutations are represented as stream(sequence) of state. This is designed for reproducibility. By storing each state, I expect I ...
1
vote
3answers
56 views

C programming: translated function from MATLAB to C gives slightly (but significantly) different result

I have been trying to translate some MATLAB code into C but one particular function is giving me different results between the two languages. I don't think it is a precision error because the values ...
0
votes
0answers
17 views

RWops undefined references

I would like to make a graphical text in my opengl program so I downloaded this 2D font renderer here. It's a C source and I would like to translate it in C++ and change most of its implementation. ...
0
votes
1answer
15 views

argument passed to function in pthread_create

I'm experimenting with pthreads and for the following code: #include <stdio.h> #include <stdlib.h> #include <pthread.h> void* print_thread_num(void *index); int main(int argc, ...
19
votes
1answer
154 views

Can macros be overloaded by number of arguments?

How does this work? How can a C99/C++11 variadic macro be implemented to expand to different things on the sole basis of how many arguments are given to it?
0
votes
1answer
30 views

Segmentation Fault 11 when telnetting in (C)

I'm just learning how to create servers in C and I keep getting a "segmentation fault: 11" error when i try telnetting into this server from another terminal. any help would be greatly appreciated! ...
2
votes
3answers
58 views

How to reverse a section of bit digits in C?

In short, if I'm dealing with a number in binary, like 0000 0110, and suppose I want only the last 3 bits to be reversed, are there any methods that translate this into 0000 0011? I have seen other ...
0
votes
2answers
99 views

Is it possible to put a C array inside itself?

In many programming languages (including JavaScript, Java, and Ruby), it's possible to put an array inside itself. Here, I'm trying to put a C integer array inside itself at its 3rd index, but I'm not ...
0
votes
0answers
37 views

C macro overloading for N-D arrays assignment

There are already many questions/answers about macro overloading. But, I cannot find a way to apply it to my particular problem. I would like to conveniently assign values to my 3D images in C. For ...
-4
votes
0answers
31 views

About Thermal Printer paper cut [closed]

Normally for the printer cutter we can cut partially or fully cut right? The setting can be set either using it's software or we send a command from RS232 signal to the printer right? I know that ...
1
vote
1answer
24 views

Is there any difference without fflush in that code?

In cpp reference, it claims fflush is: Causes the output file stream to be synchronized with the actual contents of the file. Indeed, I don't understand what it means. I just wonder, in that ...
1
vote
0answers
55 views

How to reduce the cache miss of a computation-intensive program

I wrote a computation-intensive program, and I profiled it with cachegrind, which showed the data cache miss may be the main bottleneck. I adjust(decrease the size of the computation unit to the CPU ...
0
votes
2answers
26 views

Can't navigate through a file using fseek (C)

I'm trying to navigate through a file until I find two rows where the first 4 digits of the first are different from the first 4 of the next one. For that I've been using fseek to navigate trough it ...
-1
votes
1answer
17 views

Map Share WinForm [closed]

Ive only started messing around with c# for a couple of weeks. I would like to create a form to do the following: Select predefined shares from a combo box. use check box to use current logged on ...
3
votes
3answers
81 views

Clarify and remember const usage in C [closed]

argv is an array of constant pointers to characters char * const argv[] // 1 argv is an array of pointers to characters, which are constant const char * argv[] // 2 Is there a tip to remember ...
0
votes
2answers
93 views

Can Object C compile to C?

Can i compile an objective c program to c? I'm interested if this can be done so that it can be compiled with other c compilers. I am aware that GCC can compile objective c.
0
votes
1answer
74 views

Why do I keep getting expected identifier or '('?

I am new but ready to learn. Can anybody tell me why does expected identifier or '(' keep appearing for the following code? 1 /* $Id: simple_pjsua.c 3553 2011-05-05 06:14:19Z nanang $ */ 2 /* 3 * ...
0
votes
1answer
24 views

FreeImage include in c

Is there any way to include http://freeimage.sourceforge.net/index.html in my c test program without first installing the library? It fails to compile because of some memset.. Here is my C code. Is ...
0
votes
1answer
22 views

libevent API: understanding the pointer parameters or return values

for the following libevent API: void event_set(struct event *ev, int fd, short event, void (*cb)(int, short, void *), void *arg) event_add(struct event *ev, const struct timeval *timeout); struct ...
0
votes
0answers
21 views

USB packet streaming input+output performance poor, advice needed please

I'm looking for some advice on what methods could be used to optimize USB streaming performance. This is a bare-metal embedded software application built on top of a bare-metal USB engine. Thanks in ...
3
votes
1answer
31 views

c copy file permissions from another file

What's the simplest way to copy the unix file permissions of a file and set them to another file? Is there a way to store a file's permissions to a variable and then use that variable to set those ...
-3
votes
1answer
70 views

Why should a function not return a local array? [duplicate]

char* f() { char s[100]; //....function body code return s; } Why should it not be written like this?
1
vote
5answers
64 views

What is the best way to get tight timing of a thread in c (pthreads)

Ok so I have a thread that I need to run exactly every 10ms, but it takes a variable amount of processing time (for simplicity we can assume the processing time is less than 10ms). Small deviations in ...
-2
votes
0answers
27 views

some questions about binary search tree

A complete binary search tree CBT of 315 nodes of integers is store in an array (assuming that the storage will start at index 1). is level of a binary tree equal to depth of a binary tree? how many ...
0
votes
2answers
22 views

ibmemcached Linking Error: undefined reference to `memcached_exist'

I am trying to write a sample code using libmemcached c/c++ client version (0.53) gcc -o test test.c -I/home/libmemcached/include -L/home/libmemcached/lib -lmemcached -lmemcachedutil However i get ...
0
votes
1answer
12 views

Apache access the server_rec for a module

I want to get at the value in server_rec.module_config. Does request_rec have any sort of reference to the server_rec? I am not seeing one in the httpd.h file but I could be missing it. Basically I ...
0
votes
1answer
41 views

Write to memory? (PIC internal EEPROM)

I am following this tutorial which shows you how to write to data to Internal EEPROM. The only thing that is different in this tut is that they are using p18f4520 and I am using PIC18F87J11. When I ...
-1
votes
1answer
35 views

<cstdio> issues: Filename extension for tmpnam(), rand() generation algorithm advance, & fgetc()'s stream expression

I had finished reading about stdio.h functions and need some small clarifications. Please take a minute to give short explanations for the following: 1) tmpnam() : It only gives us a string ...
0
votes
0answers
23 views

Mac OS BSD copyfile() EINVAL when copying files having double-quotes in the name

I'm trying to use BSD copyfile(...) to copy a file to a mounted AFP share (/Volumes/exchange) with an Obj-C++ code like this: Minimal example: #include <string> #include <string.h> ...

1 2 3 4 5 1926