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

UDP Broadcast Not received

I am very new to network programming and finding hard to understand few of them. I have a working program which Sends messages to a local device to let it know its working like Keep alive. Now I ...
-1
votes
0answers
40 views

why lseek failing in fedora 18?

I am using lseek with lseek(my_device_driver_fd,some_value,SEEK_SET). it is returning -1 with errno = illegal seek , at fedora 14 it was working fine. the some_value , it is just some random value, ...
2
votes
1answer
62 views

memory effective search in suffix list

There is a task to build some sort of a dictionary for list of suffixes, for an instance: [., .com., a.com., a.b.com., org., some.org., ...] and for each incoming string, for an instance ...
3
votes
1answer
60 views

Extracting C functions signatures for Erlang

I was wondering what the most suitable tool is for extracting c (and eventually c++) function names, arguments and their types from source code. I would like to use a tool that can be automated as ...
-1
votes
0answers
24 views

how to calculate the latency, throughput and bandwidth for Ping Pong and Underload packets

I have TCP/UDP application over LAN, and I have N packets of size 1KB or 10KB I want to send these packets either ping pong (1 pkt per time and I wait until to receive it) or under-load(M packets per ...
1
vote
5answers
82 views

Can't we use strtok on different strings in a single program?

I was trying to write a calculator program and so part of this I need to evaluate an expression. So I need to perform the operation based on the operator given. I am taking the whole expression ...
1
vote
1answer
81 views

Example in K&R accessing local variable outside its function?

From this question I learned that you indeed should not export a local variable's address and use it outside the function in which it was declared. However, it seems to me that K&R are breaking ...
-3
votes
4answers
65 views

How to initialize Array dynamically without specifying array size in C

I need not specify the length of the array in the program. Instead, I have to take array input (string) from the console and dynamically I have to allocate memory for the given input array. Can you ...
1
vote
1answer
70 views

glibc detected-double free or corruption

I have the following function which reads a buffer from a serial device, get some tokens and print these tokens every 10 seconds. I want these results to save them in a data.txt which I created in my ...
1
vote
0answers
24 views

Default value for missing attributes in xpath expression

I'm retrieving with cURL an XML that get parsed with libxml2 and xpath. Results (keyword) fill my 2D array (myarray). It works great! But the XML I get (current weather data for a specified City based ...
0
votes
2answers
41 views

EOF behavior when accompanied by other values

*Note: I'm using windows, so EOF is ctrl + Z for me. For a while I've noticed an EOF input seems to behave differently in isolation than it does when accompanied by other input. For example, ^Z (the ...
-2
votes
0answers
67 views

how to compute the coefficients of butterworth low/high/stop pass filter in c/c++ [closed]

I need to translate a matlab code into c/c++ code. But the matlab code contains a butter function, so I want to translate it. I have a bandpass butterworth filter implemention, I also need to extend ...
0
votes
2answers
36 views

How to use thread in windows kernel programming?

I need to create user timer and thread in windows kernel program. Anyone please give a clue that if the regular threading headers are applicable in this mode?
-1
votes
1answer
35 views

How to link files in gcc

So I have installed curl4 and when I type in the global preparation like 'curl_global_init() and give it the 'CURL_GLOBAL_ALL' I get back this error: /tmp/ccUFNPUa.o: In function 'main': ...
0
votes
1answer
55 views

Substitue backslash to forward slash in #include statement [duplicate]

I am porting my C programs from Windows to Linux. The problem is that Linux (Unix-like) does not recognize \ as directory separator, says here. So I have to substitute \ to / in all my #include ...
0
votes
0answers
14 views

How to set video frame width and video frame height in OMX.broadcom.video_decode component?

I was trying a video player pipeline using openmax, which accepts raw h264 streams decodes it and pass it to render. While configuring the ports, I want to set the frame width and frame height to 1280 ...
13
votes
4answers
280 views

Casting twice in the same line

I saw this code in project. b's type is void*: void *b = ...; int a = (int) (unsigned long) b; Is this line pointless? I mean, it this same as a = (int) b in all cases?
1
vote
1answer
73 views

analysis of cpu cache access time

I have the following program which I with the help of someother on stackoverflow wrote to understand cachelines and CPU caches.I have the result of the calculation posted below. 1 450.0 ...
1
vote
4answers
63 views

Is there a way to both check a macro is defined and it equals a certain value at the same time

I regularly use object-like preprocessor macros as boolean flags in C code to turn on and off sections of code. For example #define DEBUG_PRINT 1 And then use it like #if(DEBUG_PRINT == 1) ...
1
vote
1answer
50 views

Making the console window bigger in C

I am trying to write a table from scratch in C that has at least 20 rows, and the base console window size goes onto a second line so I need to change this. This is for an assignment (the reisizing is ...
0
votes
1answer
14 views

libcurl block until response finishes?

How do you block until the request response finished in libcurl? I need to block because CURLOPT_WRITEFUNCTION asynchronously writes to the C-String; so I need to be sure that I can get the full ...
2
votes
6answers
55 views

Assigning string literal to pointer to const char

May I know why this assignment is possible? char const *c = "Hello"; c = "there!"; Isn't it pointing to a location whose contents cannot be modified. As far as I am able to make out, it is creating ...
0
votes
1answer
62 views

C Access 2D char array via Pointer

I am trying to access a 2D array of chars. I have a pointer on right address but somehow dreferencing is not working. char ary[5][8]; char temp[8]; int i; char **a_ptr = &ary; for(i=0; ...
1
vote
2answers
47 views

Where is global variable in elf file

Recently,I want to learn about some knowledge about elf file,but when I encounter the global variable,global static variable and scope static variable,I have a little confusion,for example: int a = ...
1
vote
1answer
33 views

Cannot open tty usb port file or su usb port file on Mac

I'm writing some C code to get the message from arduino, and the port i'm using is tty.usbmodem1411 which works well to burn the code to arduino board. However, while writing the C code #include ...
0
votes
3answers
64 views

Copying one value from one struct camp into another struct but same data type

So I have one struct and I initialized a variable A with that struct data type then Ι put in some values. But now Ι need to take those values and put it into another variable B with the same struct ...
0
votes
1answer
65 views

Need help searching for a array of bytes in another process - C windows programming

/* Preprocessor directives : */ #include <stdio.h> #include <stdlib.h> #include <windows.h> #include <tlhelp32.h> #include <tchar.h> /* ...
0
votes
1answer
43 views

C/Obj-C noise generators always return 0 after the first run?

Unfortunately the simplex/perlin noise generator I've always used is very bloated and java-based, and would be a pain to transfer to c/obj-c. I'm looking for better classes to use in an iOS version of ...
-3
votes
1answer
36 views

Not sure if assigning float, int, double correctly

Here is the code that I am working with.: unsigned int valueIndex = 0; //**the size of the array value[] unsigned int n;//For fft unsigned int k;//For fft //Set sum for fft double sumReal=0; double ...
0
votes
0answers
27 views

How to do transpose for tptrs in blas?

How to do transpose for tptrs in blas? I want to solve: XA = B But it seems that tptrs only lets me solve: AX = B Or, using the 'transpose' flag, in tptrs: A'X = B which, rearranging is: ...
1
vote
7answers
94 views

In which scenario would “unroll-loops” not making result code faster?

Taken from GCC manual: -funroll-loops Unroll loops whose number of iterations can be determined at compile time or upon entry to the loop. -funroll-loops implies ...
0
votes
1answer
17 views

Is there a memory leak in JZMQ 2.x.x on top of ZeroMQ 3.2.3 while publishing on multicast?

I wrote a simple test in java (JDK 7) for a ZeroMQ PUB socket publishing data over a MULTICAST channel on Windows 7 using OpenPGM 5.2.122. I tried JZMQ versions 2.2.0, 2.1.3 and 2.1.0 on top of ZeroMQ ...
0
votes
2answers
71 views

K&R possible bug in polish calculator

I'm not sure where to post this but I think I found a pretty major bug in K&R's polish calculator program. Basically, when you perform an operation, two values get popped while only the result ...
1
vote
1answer
31 views

Access vDSOlinux.

I am studying the vdso mechanism in Linux. To find the DSO, I can parse the auxiliary vector passed to the program's entry point. The AT_SYSINFO_EHDR entry will point to the vDSO. My question is ...
2
votes
0answers
43 views

Trouble understanding block device API- any good link?

I really don't know if I'm just not looking in the right places, but I seriously haven't found any clear source on how filesystems interact with the underlying block devices. I understand that there ...
2
votes
1answer
33 views

getting wrong values for time and height for projectile motion

I'm writing a program in C that finds the time of flight and height at impact of a projectile and my program is compiling, but it's coming out with the wrong values for the solutions. Any idea what I ...
-2
votes
2answers
131 views

In C, can I delete a variable from the stack? [closed]

I am a noob student hobby-ist and I have a technical difficulty. I want my C program to use only stack space because it's faster that heap space. Also, I use [arrays of] static stack variables ...
1
vote
1answer
83 views

How do I correctly check for castling in chess AI?

I have a chess AI that doesn't always know if it can castle or not. The rooks and kings have move counters that only allow them to participate in a castle when the value of the move counter equals ...
-2
votes
4answers
58 views

C returning garbage value for length greater than 3 [duplicate]

I have a main function that has to receive a string. main() { char *c = fun(); } char* fun() { char a[] = "hello"; return a; } The problem is that if I return string of lenght 3 or ...
1
vote
1answer
48 views

RAM test steps through, but fails when running

The project I'm working on has to test the data memory of a dsPIC30F chip before the program runs. Due to industry requirements, we cannot utilize any pre-defined libraries that C has to offer. That ...
0
votes
0answers
12 views

Producing dynamic libraries (debug/release/i386/amd64) with gcc 4.7.2 under GNU-Linux (Debian)

Under Debian 7.0.0, I try to produce 4 dynamic libraries (debug/release/32/64 bits). For x86-64 (64 bits), all is ok, but for i386 (32 bits) the includes are not resolved, why? Here is the Makefile: ...
1
vote
2answers
38 views

C Compiler error: unknown type name '__evenaccess'

I know this topic has been beaten to death but after looking at a lot of code samples I can't seem to find any errors with this structure. It came straight out of a driver from the company. Let me ...
0
votes
1answer
26 views

How install C/C++ plugin to Netbeans (linux)

I'm trying to install C/C++ plugin on linux Mint on Netbeans IDE. But I cannot do it by tools->plugin->download because of my proxy server. I've downloaded it from netbeans website, but it comes with ...
-1
votes
3answers
151 views

Why does compiler not issue diagnostic for taking address of register operand?

I know that referencing the address of a registered variable results in a compile error. int main() { register int i = 10; int *a = &i; printf("%d", *a); getchar(); return 0; ...
1
vote
1answer
32 views

Unable to fit section error for data memory sections?

Here is a brief summary of my problem ... I couldn't increase the number of coordinators beyond 16, and the connection tables are limited for the PAN and Coordinators. The PAN can have up to 16 nodes ...
-6
votes
1answer
97 views

Learning C/C++/Java/Fortran for a new MSc [closed]

Is it viable to obtain a good understanding of either C/C++/Java/Fortran by next September? Thanks.
0
votes
1answer
42 views

Language: C; Compute a series recursive and iterative

I am currently trying to prepare myself for an exam and I stumbled across the following assignment: Compute the series (recursive and iterative) 1-(1/2)+(1/3)-(1/4)+(1/5)...(1/n). I searched the web ...
2
votes
3answers
45 views

Consider the program output

Consider the program #include<stdio.h> int main() { int x = 33; float y = 5; printf("%d %d",y,x); return 0; } Output: 0 1075052544 I can understand the value of y coming 0 as UB ...
0
votes
1answer
28 views

Detect call's offset with ptrace

I'm trying to do a program that can detect calls with the function ptrace. Using PTRACE_SINGLESTEP I can run a program instructions by instructions, then, when I get the OP_CODE 0xe8 pointed by the ...
-2
votes
1answer
102 views

Using C struct in C#

I have a C header file with: typedef struct CallbackData { Int 32 linkType; string strUrl; } CallbackData I have a ...

1 2 3 4 5 1981