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

Process TCP PSH

I modified the IP headers of TCP packets and directly sending them out in the netfilter NF_INET_LOCAL_OUT hook. The TCP connections can be successfully established. Unfortunately, the data packets ...
0
votes
4answers
99 views

How to make a user defined array of struct in C

I would like the user to define the size of the array when the program starts, I currently have: #define SIZE 10 typedef struct node{ int data; struct node *next; } node; struct ko { ...
0
votes
0answers
23 views

How a draw a string in a splash screen by Xlib

here is my code and I can not jump out of the while(!done) function use XFlush(d) can show the display form buffer and do not disappear before XCloseDisplay(d) and I want to make draw string like ...
0
votes
4answers
87 views

Ternary operator is always false

I am working on a project within C code and trying to use a ternary if statement but its always returning false and I don't understand why. The ternary if statement is: ...
0
votes
6answers
77 views

Command line parsing in argc/argv

I have the following code: void parse(char *commandLine) { int rc = 0; int argc = 0; char *cmdLine; char *argv[MAX_ARGS]; filename = NULL; stdoutFilename = NULL; ...
0
votes
2answers
41 views

Which PIC compiler was used to compile this code?

The PIC is a 16F630 #FUSES NOWDT, INTRC_IO, PROTECT, NOBROWNOUT, MCLR, CPD, NOPUT #use delay(clock=4000000) #use fast_io(A) later, in a function: #asm nop nop nop nop nop #endasm ...
-1
votes
3answers
63 views

find directory in a C program

How can I find if a directory exists or not in a C program? I know that getcwd() gives you the current directory but I want to find ANY directory. Is there a function for that or how do I do it? I am ...
2
votes
1answer
37 views

Flushing fopen()'ed files opened in update mode,between read and write operations.Explicit flushing needed?

I have read this about the switch between read and write operations(and vice-versa) for files opened for update using fopen() (LINK) "For files open for update (those which include a "+" sign), on ...
0
votes
1answer
41 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
26 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
1answer
27 views

Using glib to send raw bytes to an 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 ...
3
votes
0answers
30 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 ...
1
vote
1answer
15 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
1answer
35 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
17 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 ...
3
votes
4answers
52 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 ...
1
vote
2answers
55 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
65 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
118 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; } ...
1
vote
5answers
64 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
1
vote
2answers
64 views

Print Array in required order

Im a new programmer I am have an char array M = "something", and I want to print in this way t eth methi omethin something can any one help me in the logic to print in this way using loops. I ...
0
votes
2answers
32 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 ...
-8
votes
0answers
47 views

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

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 ...
0
votes
4answers
79 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
48 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
24 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
16 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 ...
-7
votes
0answers
31 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 ...
1
vote
1answer
23 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
2answers
128 views

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

I am implementing a key reader program in c/c++. I am using linux. 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, ...
0
votes
1answer
25 views

PRNG library which support store/restore sequencing state? [closed]

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
67 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
18 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
19 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, ...
22
votes
1answer
276 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
23 views

What does int type convert to void* mean in pthread_create()?

What does such code mean: int main() { typedef int UDTSOCKET; UDTSOCKET recver; pthread_create(&rsvthread, NULL, recvAndSend, (void *)(unsigned long)recver); return 0; } void* ...
0
votes
1answer
33 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! ...
4
votes
3answers
67 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
115 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
1answer
49 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
42 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 ...
2
votes
1answer
29 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
66 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
39 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
85 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
98 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
75 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
29 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 ...
1
vote
1answer
46 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 ...

1 2 3 4 5 1929