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

-1
votes
1answer
74 views

Implementing a linked list in C gives warnings and running the code shows nothing

I just tried to implement linked list in C using the GCC compiler but I got these warnings. Most of the warnings I got were "assignment from incompatible pointer type": linklist.c: In function ...
-2
votes
2answers
31 views

C finding maximum number in a row of 2D array and replacing it with elements in the upper triangle

Basically i want to create a 2 dimensional array size NxN, find the maximum value in each row and replace it in the upper triangle or rather replace the elements with the maximum it for that specific ...
0
votes
2answers
47 views

Strange value when reading from binary file with fread() in C

I have an issue that I can't solve... I used fwrite to write an int value (among other values that come from a struct) into a file that I've opened using fopen(file, "wb"); This worked fine, and ...
0
votes
2answers
109 views

bitwise division by multiples of 2

I found many posts about bitwise division and I completely understand most bitwise usage but I can't think of a specific division. I want to divide a given number (lets say 100) with all the multiples ...
0
votes
2answers
43 views

Add offset to pointer with a macro (GCC)

There is a similar question here Portable and safe way to add byte offset to any pointer but all answers are starting with ptr = (SomeType*)... which means that I have to know the type of the ...
3
votes
8answers
122 views

In C, is it good form to use typedef for a pointer?

Consider the following C code: typedef char * MYCHAR; MYCHAR x; My understanding is that the result would be that x is a pointer of type "char". However, if the declaration of x were to occur far ...
2
votes
1answer
37 views

Anchoring a new Lua thread

From the documentation, I understand that a new thread created, must be properly anchored before use. To do that, I want to keep a reference to the new thread in the registry, (Table[thread-addr] = ...
0
votes
0answers
38 views

How to enable modern look and feel of tool bar for Win32 Application?

Recently I started learning GUI programming based on Win32 API. When I add tool bar control (from comctl32.lib) to my simple application I find it looks flat while the menu bar has more "Windows 7 ...
0
votes
2answers
47 views

Passing an array of strings from a function to main function (C code)

My C xmlretrive function(thisurl, thisxpath) retrieve an XML from a given URL with cURL and send obtained chunk.memory to libxml2 parser that explorer all nodes with xpath and match thisxpath ...
-2
votes
3answers
50 views

how to allocate memory dynamically for a two dimensional array

I had recently been for a interview and they had asked me to write a programe to allocate memory dynamically for a two dimensional array (i=3 and j=2)
0
votes
5answers
79 views

undeclared identifier in C

I am trying to compile a small bank program in C in visual studio 2012 express. It shows me this error "undeclared identifier" for almost all variables and this one too "syntax error: missing ';' ...
0
votes
1answer
60 views

C - compilation error

if I build my program, it gives me many errors and warning. Everything is from compiled highest source file - main.o. ... ./main.o:16:819: warning: null character(s) ignored [enabled by default] ...
0
votes
0answers
15 views

PSO for One Dimensional Bin Packing

Am working on resolving a simple one dimensional bin packing problem using the particle swarm optimization approach and i have a deep problem in understanding the story of velocity . so the pso ...
2
votes
6answers
94 views

How strcmp() is returning -1 even though the two values are same?

When I am giving an input as 'x' the compVal is giving the value as -1. I am expecting 0 since both the values are same. Please someone explain the reason. char ch = getchar(); int compVal = ...
0
votes
0answers
77 views

rs232 communication creates error frequently

I know this question is not new and it's possible to google for some example codes/class to do rs232 communication. However, now I'm already using a class. But it works sometimes but very often don't. ...
0
votes
3answers
60 views

C : Accessing contiguous array elements using a pointer returned by a function

In the following program, I get the output 1 0 0 2130567168 11 2686668 7 2686916 whereas according to me the output must be 1 2 3 4 5 6 7 8 because the array elements are stored in contiguous ...
-6
votes
0answers
59 views

A program that generates a system of logical functions with given parameters (C-Language)

Good time! There is a problem, like and not complicated, but the brain has had time to kill myself Create a program that generates a system of logical functions with given parameters n-number of ...
0
votes
1answer
27 views

Changing Encoding UCS-2-LE w/o BOM to readable format

I have a large file of about 80MB which is encoded in UCS-2 LE w/o BOM. I don't know what that is and how to change encoding in readable format. Kindly provide the Code in PHP or C or any application ...
0
votes
1answer
26 views

C:about use a lseek system call by using an offset surpass the current seek_set

Code is from char buf1[] = "abcdefghij"; char buf2[] = "ABCDEFGHIJ"; int main(int argc, char *argv[]) { int fd; if((fd = creat("file.hole", 0777)) < 0) perror("creat error"); ...
0
votes
5answers
121 views

Bit manipulation (clear n bits)

Going through the book "Cracking the coding interview" by Gayle Laakmann McDowell, in bit manipulation chapter, it posts a question: Find the value of (assuming numbers are represented by 4 bits): ...
2
votes
0answers
49 views

Building shared libraries in subdirectories

I am trying to build an R package that uses some C code. I have a C library that is compiled into an executable, that can be called from the command line. There is a Makefile associated with it. I ...
0
votes
2answers
34 views

Assigning address of an int to a char pointer

In the following program, suppose a is stored at address 1000 and an int takes up 4bytes of storage. Now, c will point to the base address ie, 1000 and incrementing it by 3 will make it point to ...
2
votes
1answer
48 views

What's the terminology for this C construct: 'int myInt = ( { int x=42; x; } );'?

I've just been shown a very neat C trick: int myInt = ( { int x=42; x; } ); // sets myInt to 42 This is very useful for writing macros. But what exactly is going on here? Could someone pick this ...
-1
votes
1answer
29 views

Program to find the adjacent cells in 2 dimension array

Please share some logic to find all the adjacent cells of two dimension array. I have two logic but still I am hunting for the third best. 1). traverses all the cells and check if it is adjacent to ...
-1
votes
1answer
31 views

Assignment of function parameter has no effect outside the function

Why last line parameter maybe has no effect outside the function: void save_last_frame( uint8_t *saveframe, uint8_t *curframe, int width, int height, int savestride, int ...
0
votes
0answers
59 views

get the maximal length of LFSR

I want help pls to identify what is wrong with that C code , I want to test the maximal length of a linear feedback shift register (LFSR), so first I take a copy of the original register then I shift ...
0
votes
3answers
59 views

buffer is being written before old contents are used

It is valid to use memset() to initialize a buffer and then a different call is used to add specific data to it? Example: DIR *dirp; struct dirent *dp; struct dirent *buf; ...
0
votes
2answers
30 views

tree creation and sorting, will not work past first node

so I am trying to make a program that has three different types of trees : cars, clients, and suppliers. is uses a single set of creation and sorting functions. however something is wrong and the ...
1
vote
1answer
36 views

How the headers of the standard library are installed in Linux?

I have an annoying problem with a library siginfo.h. I need a version of this library that contains the structure of siginfo_t with a field for handling SIGSYS signals. For isntance, the version of ...
2
votes
4answers
78 views

C - Which is the advantage for the user of const in parameters of functions that are not pointers?

I would like to know if there is any advantage for the user when calling a function like A) void func(int i); or a function like B) void func(const int i); As inside the func the parameter i will ...
2
votes
4answers
61 views

Output of Structure Size having bitfield

#include<stdio.h> static struct s { unsigned a:5; unsigned b:5; unsigned c:5; unsigned d:5; }v={1,2,3,4}; int main() { printf("size of v = %d\n",sizeof(v)); } ...
1
vote
1answer
49 views

printing size_t: format '%lu' expects argument of type 'long unsigned int'

I try to print size_t by casting to unsigned long (as suggested in the book "C programming a modern approach) like the following: printf("size:%lu, bsize:%lu", (unsigned long)size, (unsigned ...
0
votes
0answers
11 views

Updating NiDAQ code to NiDAQmx

We are trying to update our code from the old model "NIDAQ.h" to the newest version of the API "NIDAQmx.h". We already have the code ready for the oldest version and would like the newest version for ...
-4
votes
0answers
48 views

using bitwise operator is more time efficient [closed]

I heard that all the code execute in binary.So my question is that execution of code with particular format in binary or ELF is more time efficient or not means the code which executed in particular ...
1
vote
0answers
27 views

Can a OpenMP C++ program be used as mapper/reducer function in Hadoop?

Can we combine OpenMP and MapReduce something like this: Map/Reduce can be used to distribute the data set among different computers. Then each computer runs mapper/reducer function that take ...
0
votes
3answers
85 views

modifying the data section in C [duplicate]

the statement char* c = "name"; causes c to point to a location in data section. But why does c[0] = 'N' cause a seg-fault? Why is it read-only?
0
votes
0answers
9 views

Video stream to individual images and audio and back

Are there any C/C++ libraries that would enable me with a simple command to convert video into seperate imagas and perhaps a seperate audio file and combine them back into a video? Or, would it be ...
3
votes
3answers
64 views

How do I write a recursive for-loop “repeat” macro to generate C code with the CPP preprocessor?

I want to force the preprocessor to do some automatic code generation for me. I don't need much: just a simple for-loop that contains another for-loop.[1] I've read all that I can about macro ...
0
votes
2answers
36 views

Linux C read a directory

Hello I want to read from and write to a directory just like reading from and writing to files. I always use the open, read, write and close functions, which means I use descriptors. But doing this on ...
-1
votes
3answers
67 views

Passing string to a function in C - with or without pointers?

When I'm passing a string to the function sometimes I use char *functionname(char *string name[256]) and sometimes I use it without pointers (for example: char functionname(char string[256]) My ...
0
votes
2answers
61 views

Read a txt file, and memorize into int or long in C

I'm not a C genius. So..first of all sorry for my stupid question. I have a .txt file or .dta (whatever) and I want to read it in C. I would like to take the numbers of the txt, formatted as two ...
2
votes
3answers
51 views

deletion of binary tree using new method

Actually I was stuck while implementing the deletion of a tree . I deleted the leaf nodes using free() and now the parent would become leaf nodes , and delete those nodes too using recursion . But the ...
0
votes
0answers
48 views

C: parallel processes and pick the last but one

I have to write a program in C that uses processes, not threads (I'm writing in UNIX): the father generate 7 children. every child generate a random integer and begin an empty for statement from 0 to ...
-5
votes
3answers
66 views

Multiplication of 9 with bitwise operator

Can somebody tell me how to find the table of 9 with using Bit wise operator.A detailed description will be greatly appreciated.
-1
votes
1answer
59 views

Passing a structure with shared memory

Hi I want to pass my structure from father to son in C (not c# or c++). My problem is to do parsing data in shared memory and out share memory , I must to do this i can't use FIFO or other system you ...
0
votes
2answers
37 views

deleting an element on stack in C

Here I made a simple test to check if an element on stack can be deleted . // This program test whether an object is dynamically allocated and passed as a parameter to a function , \ //free()ed in ...
2
votes
1answer
40 views

How I can make a file unexecutable in winapi?

How I can make a file unexecutable in winapi ? Something like quarantine in anti-viruses . Is it possible or not ? Thanks a lot .
-1
votes
1answer
53 views

How to have password echoed as asterisks using getch()

I was trying to make a program that inputs a password from a user and stores the password as the string entered by the user but the display should contain asterisks, using getch() function. i am ...
0
votes
2answers
103 views

C/C++ is it usual to use threads or not? [closed]

I'm not really familar with threads, I know the basics. After a comment of Jeremy Friesner, I would like to split my interface and some others stuffs like calculus made by my program. I don't know ...
1
vote
1answer
72 views

Pointer syntax confusion (*ptr vs ptr)

I've been spending a couple days trying to understand pointers but the syntax still confuses me. When you write say, int *ptr;, what is the difference between ptr and *ptr after this declaration? In ...

1 2 3 4 5 1979