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
0answers
16 views

Redirect IO for child process

I wrote a program that redirects IO of a child process. The problem I'm having is that the new stdout and stderr aren't writing straight to file, they're buffering in memory instead. I tried to fix ...
2
votes
2answers
34 views

DLL written in C vs the same written in C++

I was having a discussion with a colleague today. He claimed that writing a DLL in C would allow for any other application, written in whatever language, to use that DLL. BUT, if that DLL is written ...
1
vote
2answers
34 views

Array of Linked List, moving to the next node error;

Basically I want an array of linked list, each linked list having it's own header. This is my code: struct node{ int location; struct node *next; struct node *previous; }; typedef ...
1
vote
2answers
39 views

Seg Fault using strcmp with * char

I have this struct typedef struct no { char command[MAX_COMMAND_LINE_SIZE]; struct no * prox; } lista; lista *listaCommand = NULL; and I'm filling listaCommand with a simple function that ...
0
votes
1answer
69 views

Is there any way to “reconst” a nonconst char?

Say I have a char or a char array that is not consted. I modify it, etc. Then I want to later turn off all modifications after. Is there any way to reconst a char? This question came when i was ...
0
votes
2answers
30 views

Variables declared globally are external or static?

I have studied in c that variables that use keyword extern are externally referenced for example: Prog1.c main(){ extern int a ; a=2; } Prog2.c int a=3; these two programs are successfully compiled ...
1
vote
2answers
29 views

Data transfer across big and small Endian machines

Assuming there are 3 strings like "cat", "bat, "rat". I need to combine them into one string and send them to another computer of different Endianess through socket programming. So, if the other ...
-3
votes
0answers
17 views

Win32 console programming tutorials [closed]

I have found parts 1 to 4 of adrianxw Win32 console programming tutorial at a chinese site http://blog.baozishan.in/?p=871, without the images the site of the author http://www.adrianxw.dk seems to ...
-8
votes
2answers
36 views

Structure pointer explanation

#include <stdio.h> #include <stdlib.h> struct X { int a; char b; }; int main(int argc, char * argv[]) { struct X *x_ptr = malloc(sizeof(struct X)); x_ptr->a = 10; ...
1
vote
1answer
20 views

c compiler commands for generating a winexe

how do i instruct the C compiler (gcc &| cc) to make a "Windows executable" in command line? just like csc /t:winexe filename.cs in c#? my goal is to create a GUI(winapi) based app without the ...
0
votes
1answer
9 views

Couldn't load pppd shared library - undefined symbol g_string_sized_new

I've compiled shared library (pppd plugin) with no errors or warnings but when pppd tries to load this plugin, it fails with "undefined symbol g_string_sized_new" message. Plugin source can be found ...
1
vote
1answer
21 views

I can't understand about Segment alignment of ELF file

[Nr] Name Type Addr Off Size ES Flg Lk Inf Al [ 1] .text PROGBITS 00000000 000034 00002a 00 AX 0 0 4 As above,the segment begin from 0x34 ...
1
vote
3answers
66 views

Why do I get - 'function' : not all control paths return a value in C

I am trying to learn the basics of C using 'The C Programming Language - Brian Kernighan and Dennis Ritchie' I've created this basic program to try out functions and storing a string, but for some ...
-3
votes
3answers
71 views

C Function returning an Array

I always thought that when you want to return an array from a function, the only way to do that was using pointers like so: char * func(); But yesterday, while I was going through K & R, I ...
0
votes
1answer
15 views

Does MS lib.exe support DLL symbol redirection like '==' in dlltool

e.g. If I have a libtest.dll file which export symbol __ugly_name, I want to use pretty_name in the source file and lib file, I can do D:\var\tmp\build>type t-dll.c main() { ...
-1
votes
1answer
31 views

c program to copy the data between two specific words from one file to another

with header; with linker; package body(* some text ) vin float32=2.0; mis float32=3.0; raj pointtodatatype.array(.234,-.2344323343,.234555656,.2334445344) rex float32=3*3.142345634; procedure I want ...
3
votes
0answers
23 views

Why R/W transition mid-file in rb+ mode fails unless I use fseek(fp,0,SEEK_CUR)?Why it works at end of file?

I had never realized this.I could have very well assumed subconsciously as a hard fact that I can transition between reading and writing on an existing file opened it update mode,just like that.But ...
0
votes
1answer
27 views

Trying to compile a target. It is C code. Have put #ifdef MYDEBUG. How to pass it as set during compilation?

I am trying to compile a target using make. In my code, I have put prepossessing conditionals as: #ifdef MYDEBUG (code to execute) #endif Now I was under the impression that if I do a make ...
5
votes
3answers
81 views

How do I find whether a number is positive, negative or zero without using if or for?

I want to implement the sign and zero flag setting in microprocessor. So I need to write a function to find whether the number is positive, negative or zero without using if or for loops and also only ...
0
votes
0answers
20 views

Verifying Device ID of FPGA using C program

I have Machx02-1200-ze eval board on which ftdi chip is available.I need to send commands from ftdi chip to fpga(lattice).For this, I have written program ...
-8
votes
0answers
33 views

curl urgent help needed for connecting to webpage URL and fetch data [closed]

I need to connect to webpage URL asynchronously and fetch data line by line, in real time every 30 minutes. Can I achieve this using curl library? Is there any challenge in asynchronous connect using ...
0
votes
0answers
18 views

SublimeLinter can not check C and C++

I installed the SublimeLinter to Sublime Text 2 for checking the C and C++, but it seems not work. The SublimeLinter can work well for Python, but when I write the C and C++, nothing happens. My ...
2
votes
2answers
39 views

segmentation fault on random running instances

Below program gives me segmentation fault(core dumped) error on random instances. sometimes it runs without any error. The program is just for understanding deadlocks. Even though I have run this ...
0
votes
2answers
45 views

lvalue required as unary ‘&’ operand

I have the following lines of code : #define PORT 9987 and char *ptr = (char *)&PORT; This seems to work in my server code. But as I wrote it in my client code, it gives this error message ...
1
vote
0answers
17 views

Why does GetOverlappedResult need the file handle? [closed]

Why does GetOverlappedResult need a file handle? It seems like WaitForSingleObject(overlapped->hEvent) should be enough to wait on the event so that the overlapped I/O finishes, so what does ...
0
votes
1answer
79 views

C++ large string initialization and use

Hi I have an array of around 500 strings. Multiple functions in my class use this variable. I obviously do not want to initialize that array multiple times throughout my program. What would be the ...
0
votes
0answers
24 views

How to programatically get SD Card CID via C?

I want to programmatically get SD Card CID via C. In other words, i want to get the something like serial and manfid from SD and MMC Block Device ...
0
votes
1answer
18 views

Safety of bitshift operators on different-width datatypes

Bitwise operators have never been my forte. I'm wondering when explicit casts are necessary when using bit-shifts. For example, is i&1 == i%2 guaranteed to be true whenever i is an unsigned ...
0
votes
3answers
79 views

how to convert string to c-style string

here is my code,I want to read config file using c++ my code is here: //myutils.h #include <string> #include <map> using namespace std; void read_login_data(char ...
-1
votes
2answers
45 views

C fork distinguish between father and sons

My problem is the stock doesnt change i think there is something wrong in the if statement pid[i] == 0. I doenst get the prints from the "father process part" of my code only from the childs. ...
-4
votes
5answers
76 views

Why can't we use “%d” in C language instead of “%u” with pointers? [closed]

%u is used for unsigned numbers. I get the same results if I use %d instead of %u to display the address of a variable. We use %u just for ethics or does it make any real difference too. Have a look: ...
0
votes
2answers
43 views

Writing and Reading to and from a binary file C language

I was given an assignment to manage a sort of music store. In the database (which is saved as a .dat file) we have an artists name, and the album. I'm having problems writing and reading the file. ...
1
vote
2answers
60 views

Copy a linked list in c

typedef struct slist *LInt; typedef struct slist{ int value; LInt prox; }Node; LInt clone2(LInt l){ LInt nova=NULL,aux2=NULL; while(l){ aux2=nova; nova=(LInt)malloc(sizeof(Node)); ...
3
votes
2answers
47 views

Thresholding a range of colors from an image

The plan My project is able to capture the bitmap of a target window and convert it into an IplImage, and then display that image in a cvNamedWindow, where further processing can take place. For the ...
1
vote
2answers
47 views

C - same data in dynamic struct

Here's my code: #include <stdio.h> #include <stdlib.h> #define STR_LEN 255 #define TRUE 1 typedef struct { int id; char text[STR_LEN]; char ...
0
votes
1answer
8 views

g_array_sort() called but not sorting

This is my code : gint compare_ulong_function (gconstpointer a, gconstpointer b) { return *(unsigned long *)a - *(unsigned long *)b; } GArray* build_priority_queue(unsigned char* const ...
1
vote
4answers
76 views

Read from a file that is continuously being updated

I am writing some C code to process some data in a file, but I just learned that the file is going to be constantly added to (about 1 time/second, maybe faster). So I'm wondering how do I keep ...
4
votes
3answers
94 views

Strange C bug in a simple program (homework)

Below is some simple code that should accept integer input from the console. It works fine until invalid (non integer) input is given. 1 #include <stdio.h> 2 3 int main() 4 { 5 int x = ...
-7
votes
2answers
35 views

How do you convert decimal in integer to hexadecimal in integer? [closed]

cout<<std::hex<<dec; I want to store it to an int in the form of 0x... How do I store that value in an integer instead of printing it out?
1
vote
3answers
17 views

Anonymous C struct with declaration

Considering the following definition: struct { int x; int y; } point; void main() { ... } You're declaring the variable "point" of "anonymous struct" type, is there any way to ...
0
votes
1answer
48 views

struct by reference not changing

I'm trying to make a basic linked list in C, I have a struct and an "append" function. However, no matter how many items I add to it, the struct doesn't change at all. I can't find the bug, really. ...
0
votes
3answers
32 views

Private Keyword in a C Struct

Today, I have just noticed a statement in a C struct, and to be honest I was like WTF at first. It is like; struct foo { void *private; //Some other members }; Believe or not this struct is being ...
0
votes
2answers
52 views

Correct buffer size - evaluation and protection

I'm using TCHAR in the Visual C++ poject I'm working on, which definition is shown below: #ifdef _UNICODE typedef wchar_t TCHAR; #else typedef char TCHAR; #endif I need to put some data into buffer ...
2
votes
2answers
58 views

How to combine two arrays into the one, alternating elements?

Suppose you have array arr[N] of increasing numbers. You have to divide it in two other (Left and Right): L = {0, 2, 4, 6, 8, 10, ...} R = {1, 3, 5, 7, 9, 11, ...} The following algorithm does ...
0
votes
1answer
48 views

Undefined reference is confusing me

I have no idea why i get the reference errors and i don't understand how to fix them. I am completly new to this, so any help is apriciated. As far as i understand the rpcdce.h should contain ...
0
votes
5answers
52 views

How to initiate static pointer with malloc in C?

I'm trying to initiate a static variable (inside a function) with malloc in C, but I'm getting the "initializer not constant error". I know that I can't initiate a static with non constants in C, but ...
2
votes
2answers
24 views

Setting a struct to an array in an AVR

I'm using an AVR-atmega processor which controls a RTC. In the atmega, the time from RTC is saved as a struct: typedef struct { uint8_t year; uint8_t month; uint8_t hours; uint8_t ...
1
vote
1answer
45 views

Why is dynamic binary translation more practical than static binary translation?

When it comes to Binary Translation (Recompilation), I have always heard that dynamic binary translation is often a much better alternative to static binary translation, but I can't ever seem to grasp ...
1
vote
1answer
32 views

Backtrace points to fopen crash

Following is the backtrace I got from a recent crash. It points to the fopen call. Not sure whats going on here. There is enough space on the device. & Even if the file is not their , it should ...
0
votes
1answer
19 views

How to properly apply thread synchronization in CUDA app?

Generally I was using thread synchronization very occasionally in my applications because I didn't need this functionality very often. I'm not really advanced C/C++ programmer, however I'm not a ...

1 2 3 4 5 1931