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

Conversion from unsigned int array to unsigned char array

I don't know how to convert an array of unsigned int to an array of unsigned char in a good way. I would like to receive some suggestions. To be more clear, my problem is that I have a function that ...
5
votes
4answers
103 views

Why does malloc() or new never return NULL?

I'm writing an application which needs a lot of memory for caching purposes as I described he here. Now I'm playing around with some malloc / new constructions to figure out how I could realise it. I ...
1
vote
1answer
8 views

Apache C module how to send response to client

I have written an Apache module that handles receiving a file from a client. I now want to send a response back to the client. I want the response to contain a string representing the file path to the ...
-6
votes
0answers
30 views

Linked lists in c crisis newbie here [closed]

I've just started studying linked list and i ran into this exercise seems interesting but i don't even know where to start i think it will be a challenge even for you. :p(raising morale) its called ...
-4
votes
0answers
53 views

I wanna create a program that accesses hardware [closed]

I wanna create a program that accesses the hard drive, internet data memory and the processor, or both mobile phones and pc's and programs them. Which language do I need in order to do this? My 2nd ...
0
votes
1answer
13 views

Where can I find small opensource MPI applications?

I intend to build a Linux cluster for my final year project and do some parallel programming on it. Till now I have been reading books about MPI, but unfortunately I haven't any idea about a real ...
3
votes
1answer
59 views

sizeof character and strlen string mismatch

As per my code, I assume each greek character is stored in 2bytes. sizeof returns the size of each character as 4 (i.e the sizeof int) How does strlen return 16 ? [Making me think each character ...
1
vote
1answer
21 views

Can fseek(stdin,1,SEEK_SET) or rewind(stdin) be used to flush the input buffer instead of non-portable fflush(stdin)?

Since I discovered fflush(stdin) is not a portable way to deal with the familiar problem of "newline lurking in the input buffer",I have been using the following when I have to use scanf() : ...
5
votes
2answers
55 views

C: how to manage a large structure?

In C: I am trying to use a structure containing a large array, and I have a stack overflow error while declaring it. I guess (correctly?) that I don't have enough memory in the stack, and therefore, ...
3
votes
1answer
24 views

Defining global variables in mpi

I have written a sample code below: #include <stdio.h> #include <mpi.h> double x; int main (int argc, char **argv) { MPI_Init(&argc, &argv); ...
-2
votes
0answers
38 views

Unable to receive a string with 10 characters in the server side of a socket using recv function

My server side recv function looks like this: args[i] = (char *) malloc((sizeof(char) * len) + 1); if (recv(acceptFD, args[i], sizeof(char) * len, 0) != (int)sizeof(char) * len) { ...
4
votes
1answer
80 views

malloced array VS. variable-length-array

There are two ways to allocate memory to an array, of which the size is unknown at the beginning. The most common way is using malloc like this int * array; ... // when we know the size array = ...
-1
votes
0answers
26 views

Is there a way for a C or C++ application to connect to remote JVM via JMX? [closed]

I would like to know if is a way to connect a C or C++ application to a remote JVM via JMX? Best regards, SK
0
votes
1answer
51 views

What is Pc Materialization?

I am working with a tool called for binary instrumentation called Intel Pin. However I encountered this strange terminology while I was examining part of the examples that Pin comes with. Here is the ...
0
votes
2answers
57 views

Removing an element from a char array (C)

I'm trying to remove a char from an array and I'm having problems. I read how to do it with numbers but it seems is different from removing chars as it's not working for me. If I've the following ...
1
vote
3answers
24 views

How to convert an (char) array containing 8 bytes(which represent a 64bit int) to a string

As written in the title, I need to convert an (char) array containing 8 bytes(which represent a 64bit int) to a string. I'm using c code on a NEC78K0R (16 bit mcu). I'm using the IAR Embedded ...
0
votes
2answers
45 views

Ignore Certain Strings

I have some C code which reads in the contents of a HTML form from STDIN and, at the moment tokenizes the string. fgets(formip, 1024, stdin); pch = strtok (formip,"=&"); while (pch != NULL) { ...
0
votes
1answer
31 views

Parsing part of XML file

So i am stuck on this for quite some time now. I use libxml2 and it works great for another part in the code but i cant seem to figure this one out and its bugging me like crazy. I have this xml ...
-2
votes
2answers
92 views

Why c store 12345 in int *c=12345;

#include<stdio.h> void main() { int *c=12345; printf("%d %x", str ,&str); //Focus line } The answer of this code is 12345 8af123 where 8af123 is address which is random and ...
-5
votes
0answers
31 views

Guide me in entering a ASCII value from the terminal (windows xp operating system) [closed]

If a user wants to change the temperature value (say +250 or -250) over the desktop terminal. how will be the message structure for sending this over the serial interface (RS232) among any of the ...
4
votes
0answers
112 views

Initialization of C struct in C++ [duplicate]

For a microcontroller project I'm working on, I'm writing a shared library. I'm mixing C and C++, mainly because of all the pointer arithmic that needs to be done in a low level part and because then ...
0
votes
2answers
48 views

Output Crash in array

Array is defined in the code and we should count the number of positive numbers in the array and create a new array and insert all the positive numbers in it if the positive numbers in the original ...
1
vote
1answer
37 views

Byte array unioned with a struct (byte aligment)

I would like to combine a struct and a byte array in a union. The compiler is gcc. Is the following considered good/save code for a 32bit embedded controller (AVR)? Do I have to worry about the byte ...
2
votes
3answers
50 views

How to write 0x00 into file

I'm writing some application which will communicate (write only) with my custom USB-serial device. It is Cocoa (OS X) application and part which is related to this writing is coded in POSIX style. I ...
0
votes
0answers
27 views

regex.h causes exception in VisualStudio 2010

I wanted to show my students how to use regular expresions. As they are learn programming in C, I thought it would be the best to use regex.h from GnuWin32 ...
0
votes
0answers
11 views

How to detect ODBC DB2 connection encoding (code page)

Is it possible to check which db2 code page is used in communication between ODBC connector and db2 database from c program using ODBC api?
0
votes
1answer
67 views

C split array of strings to subarrays

I am doing a shell (in C) for school assignment and I have this problem: I have read the input and have array of words. (like this: {"/bin/ls", "-l", ">", "file"}) And I want to have subarrays with ...
5
votes
5answers
192 views

what's this C++ macro meaning?

I can't figure out what this macro means: #define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n DECLARE_HANDLE(HWND); I have learned from The C Program that "##" meaning connect the ...
1
vote
1answer
57 views

C Send Socket without Defining Socket

What does this line of code do send(4, "test\n", 15, 0); If there is no socket defined in the code?
0
votes
2answers
46 views

comparison of signed and unsigned numbers [duplicate]

Here is the question as shown below and the answers comes as True.I know there is some promotion which would happen when you compare an signed and unsigned.Can you please tell me how does the signed ...
1
vote
1answer
23 views

C DLL In Code::Blocks

I can't find anything about how to make a C DLL in Code::Blocks. Whenever I try and look it up it shows links to using C++ DLLs in managed programming languages. And Code::Blocks doesn't give an ...
-4
votes
2answers
67 views

How to convert c code to vb.net? [closed]

How can I convert the following into VB? What does it mean? unsigned char *s = (unsigned char *)(void *)serialNum;
0
votes
3answers
44 views

How to eat keys in WM_KEYDOWN

Im handling the WM_KEYDOWN message in an edit box. I am handling a bunch of keys, but for certain keys (eg. tab) i'd like to prevent the displayable character from being appended to the editbox. ...
0
votes
1answer
46 views

Design issue: Input files and parsing them and creating directories on the basis of content of that files

Suppose there is a directory XYZ having too many files (100 to 10000). Each file contain the format like first line having company name and second line some data values. for example file 1.txt having ...
3
votes
2answers
75 views

how to know the address of each variable, pointer, function, return address of function, etc. in a program?

I want to check the address of each and every line of my code. I want to know: When variables are created, at what address? When functions are created, at what address? When a function returns, then ...
1
vote
2answers
66 views

Comparing nan (greater and greater equal)

I already know that if(nan != nan) -> TRUE, which is quite logical (sqrt(-1) has to be unequal to 0/0). The following line of code is also logical: if(nan > 90.0f) -> FALSE ...nan is not ...
0
votes
3answers
29 views

How to use SIGUSR1 alternate values

In man 7 signal it shows that SIGUSR1 as SIGUSR1 30,10,16 Term User-defined signal 1. If i use SIGUSR1 in my C code, i get the value 10. Is there any way to access the other values 30 & ...
10
votes
3answers
182 views

Is it possible to swap two variables with only += and -= no other operators or variables?

I want to swap two variables with only += and -= operators and without temporary variables. I know the standard solutions like: a = a+b; b = a-b; a = a-b; and with xor: a ^= b; b ^= a; a ^= b; ...
0
votes
2answers
46 views

Segmentation fault (core dumped) when parsing char data

I need your help. I have a program to read gps and accelerometer data from port. The programm work like this : when I send 'a' prog will receive gps data and send to database, when I send 'b', prog ...
0
votes
4answers
57 views

how to write the character value from structure into the serial interface and convert into integer value?

struct MemoryTag1; typedef struct MemoryTag1{ char a[8]= {'+','0','2','6','.','5','EA','\r'}; // setpoint temperature value char b[8]= {'-','0','2','4','.','5','EB','\r'}; char c[6]= ...
1
vote
0answers
31 views

Checking username: getpwnam / getpwnam_r: No such file or directory

I'm trying to make a web logging and I use getpwnam() function to check username existing. But for valid username getpwnam returns error: No such file or directory. So I tried getpwnam_r(), but it ...
3
votes
7answers
67 views

What does char * argv[] means?

I'm new to C programming, I encountered a problem. In case of complicated declarations i found this int *daytab[13]; // daytab is an array of 13 pointers to int which means daytab is the name of ...
1
vote
1answer
33 views

How to save void * data into a header file?

I am currently working on images and procedurally generate images then convert them into dds or rtc1. Due to constrains of my program, I cannot open external files so I want them embedded with the ...
0
votes
1answer
53 views

Block level using LRU method

Iam having the following problem. I am working on a project and i need to use some libraries that i have not access in this code. In those libraries there is a function Read(int,int,void*). Third ...
2
votes
4answers
51 views

C how to modify memory of structs that are inside other structs

If I have two structs: typedef struct{ unsigned int time; double rate; }quote; typedef struct{ unsigned int freeSlots; unsigned int end; unsigned int start; unsigned int ...
2
votes
2answers
60 views

what's the difference between the two code block?

In my program , I use basename function to get the partition. first , I write a if sentence like this: if (!strncmp(buf, basename("/dev/mmcblk0p3"), strlen(basename("/dev/mmcblk0p3"))) { ...
-1
votes
1answer
41 views

How to ensure that UDP socket is closed?

I have a Client Server application. The client sends commands to server and receives the data on a UDP socket channel. Each time the socket file is created with a different id. I am executing the ...
0
votes
2answers
99 views

C array = array faster than memcpy()

I have a piece of C code which I am trying to optimise which involves setting an array a to b. I am currently using memcpy to achieve this, and it works, however it's not fast enough. I.e. double ...
0
votes
2answers
64 views

Does symbol visibility protect shared library from abuse/crack?

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 ...
1
vote
3answers
94 views

Confused in understanding recursion

I am little bit confused with the following code to find height of the tree and the code to find sum of n nos recursively, which is below this. What does the lheight and rheight store, depending on ...

1 2 3 4 5 1924