Tagged Questions
-2
votes
1answer
141 views
Chat client in C windows programming [closed]
in this source i can just send one message but i want to send more messages.
how can i fix this problem
please first run the server and then client
then you see you can just send one message
i want to ...
0
votes
3answers
70 views
Clarifying on function calling
I am under learning of android source code. And I want to know that how the lower level functions are getting calling from application.
While learning in this ascept, now i am in the struggle to ...
0
votes
0answers
74 views
looking for text format to generate c and python [closed]
For my project I need to generate a source code in python, C, fortran from a text file.
For a file format I choose XML. This format should describe the work flow and variables declared (that GUI part ...
8
votes
1answer
111 views
Weird Integer Cache inside Python 2.6
after dive into python's source code, I find out that it maintains an array of PyInt_Objects ranging from int(-5) to int(256) (@src/Objects/intobject.c)
A little experiment proves it:
>>> a ...
-1
votes
2answers
185 views
source code of CvCaptureFromFile(..)
I want to use the source code of the CvCaptureFromFile(..) function as I do not want to use OpenCV library functions in my project. So I went inside the function by pressing F10,F11 and I copied the ...
0
votes
1answer
69 views
confusion on sqlite3 struct in sqlite3 source code
in the function
static int sqlite3Prepare(
sqlite3 *db, /* Database handle. */
const char *zSql, /* UTF-8 encoded SQL statement. */
int nBytes, /* ...
0
votes
1answer
93 views
Reading PCM samples in LAME - need explanation of source code
Subsequent to my question posted here, further investigation into LAME with gdb revealed that at any given time, only 576 samples are read from the input pcm file. However, these samples are used to ...
0
votes
0answers
11 views
what does p_cvFree(ptr, p_cvAllocUserData) returns or where can I find the definition
Hi I was using the source code of the cvFree_( void* ptr ),which is as follows-
CV_IMPL void cvFree_( void* ptr )
{
CV_FUNCNAME( "cvFree_" );
__BEGIN__;
if( ptr )
{
...
0
votes
1answer
62 views
Where can I get the source code of functions(I mean,the C standard functions) in gcc/clang etc?
I want to see the "real" C source code of the functions. Its real implementation in the gcc and clang compiler. I man "real" because I look at in the header file but I a see only a prototype and ...
1
vote
1answer
53 views
CvIPL defination
I am doing a project where I cannot use the opencv library. So I was trying to look at the source code and modify and use some of them as I need.
But I had a problem with the cvCreateData(..) ...
1
vote
1answer
159 views
Doxygen: hiding part of source code in source code browser
1.) generally i want Doxygen to allow viewing the source code of documented files. But I want a part of the source code to be hidden.
I know how to force Doxygen not to document certain piece of code ...
0
votes
1answer
78 views
Is it Possible to Debug Complex Source Code in a Debugger?
I like to do step by step analysis on the execution of a complex source code working (like using break point, step into etc).
Is it possible to do it in the general compilers/debuggers, like dev ...
1
vote
1answer
205 views
passing uthash to function
i have the problem that as soon as i am returning from a function my hash is empty - i assume it is just a small error of mine, but i can't find it by myself :/
thx for your help!!
#include ...
3
votes
3answers
158 views
How much source information is stored in c++ executables
Some days ago I accidentally opened a C++ executable of a commercial application in Notepad++ and found out that there's quite a lot information about the original source code stored in the ...
2
votes
1answer
971 views
C: how to write a function like printf
I have learnt to use library stdarg.h to have function with unknown number of arguments. Here is a simple function how to use this :
void print(int args,...){
va_list ap;
va_start(ap, args);
...
2
votes
3answers
107 views
Associate text from source code line to line - too fragile
I need to associate textual data with the lines in a source code file. Something like "these lines are to create a Myclass object" -> lines from 20 to 32.
The problem is that this kind of line ...
0
votes
4answers
823 views
Online source code for scanf and printf?
Where can I get the source code (defintion) of scanf and printf? I am having a hard time understanding why in scanf("%p",p); printing p using *p gives the decimal value of what gets entered at the ...
3
votes
3answers
161 views
Best way to check C code with simple formatting rules?
I have to write a tool to check if C code is well written.
By well written I mean some simple rules:
Binary operators must be surrounded with spaces
a = 1 + 1; //correct
a = 1+1; //incorrect
...
2
votes
1answer
233 views
Does Android support log2
Does android supports log2 ?
I already find that android doesnt support long double.
When i tried to compile cdce3.c I received following error:
g++.dg/cdce3.C: In function 'void mlog2f(int)':
...
2
votes
1answer
176 views
Correct naming convention for C library code [closed]
What is the correct way to name files and functions that are part of a C based code library/API?
0
votes
3answers
234 views
Is there any software to format source code for C/C++ on Mac? [duplicate]
Possible Duplicate:
Objective-C style formatter
I have wrote a program and wonder if there is any software to format the codes the way it should look like a good programmer?
I know I ...
12
votes
4answers
863 views
Translating source code into a foreign language
I'm running an educational website which is teaching programing to kids (12-15 years old).
As they don't all speak English in the code source of the solutions we are using French variables and ...
5
votes
6answers
402 views
C/C++ preprocessor good/bad use case examples
In my C source code I have the following block that uses the preprocessor to save me from typing out very repetitive code:
#define COPY_IEC_STR(member) \
...
0
votes
0answers
48 views
Fast creation of a C from a custom template in Visual Studio 2010
How can I create in Visual Studio 2010 a new C file that has my own default/boilerplate code already loaded? (In the fastest way possible, like using a hotkey Ctrl+N for example)
4
votes
4answers
140 views
Is this a coding convention?
I am doing feature enhancement on a piece of code, and here is what i saw in existing code. If there is a enum or struct declared, later there is always a typedef:
enum _Mode {
MODE1 = 0,
...
3
votes
6answers
126 views
Is it a good idea to have global definitions in a header file?
Say I have a struct like this one:
struct Point {
int x;
int y;
}
Say also that I need to declare an initialized Point:
static struct Point origin = {0, 0}
My question is where should I ...
-4
votes
2answers
99 views
my code of linked list not work
folks i had few line of linked list here :
#include <stdio.h>
#include <stdlib.h>
/*
*
*/
typedef struct _my_linked_list
{
uint id;
char *nama;
struct ...
4
votes
3answers
232 views
Code analyzer for C?
I'd like to use an app that would make some nice diagrams out of my C code. More specifically, I'd like it to list me all the functions in my project, and also somehow visualize the possible call ...
4
votes
5answers
2k views
Understanding header and source files in C
I've perused the possible duplicates, however I hope I'm having an off day because none of the answers there are sinking in.
tl;dr: How are source and header files related in C? Do projects sort out ...
1
vote
6answers
203 views
compile code as a single automaticly merged file to allow compiler better code optimization
suppose you have a program in C, C++ or any other language that employs the "compile-objects-then-link-them"-scheme.
When your program is not small, it is likely to compromise several files, in order ...
8
votes
5answers
3k views
Good source code browser for C [closed]
I am on the look out for a good software for browsing kernel level code written in C. I am currently using source navigator. Are there any better suggestions?
EDIT: I work on systems with both ...
1
vote
2answers
160 views
C front-end similar to Berkeley CIL
I want to do some source analysis on C code. I found a framework CIL (http://hal.cs.berkeley.edu/cil/index.html) that lets you instrument C code. Sadly this requires you to write the analyser code in ...
1
vote
3answers
902 views
Beginner Code::Blocks 10.05 Project vs. Program terminology and IDE issues
Here is the basic issue: when I use codeblocks to begin a "project" (they use this term as opposed to program...) I start with a console "project" and C::B immediately includes a file "main.c" file... ...
1
vote
2answers
81 views
How to quickly locate the implementation of a specific PHP function in PHP's C source?
PHP's C source can be found at http://svn.php.net/viewvc/php/php-src/trunk/. If I want to find the implementation of a specific PHP function, how to quick locate it in that SVN source?
-4
votes
1answer
563 views
Code for sorting using map reduce in c or java
I need a code or help to write a code in c or java to demonstrate the power of map reduce.
13
votes
4answers
1k views
Erlang source code guide
I am interested in delving into Erlang's C source code and try to understand (at least at a moderate level) what is going on under the hood. Where can I find info on the design and structure of the ...
3
votes
2answers
517 views
How do I get callgrind to dump source line information?
I'm trying to profile a shared library on GNU/Linux which does real-time audio processing, so performance is important. I run another program which hooks it up to the audio input and output of my ...
1
vote
2answers
1k views
Looking for calculator source code, BSD-licensed
I have an urgent project which need many functions of a calculator (plus a few in-house business rule formulas). As I won't have time to re-invent the wheel so I am looking for source code directly.
...
2
votes
1answer
267 views
Could browsing the PHP source code help a PHP developer learn C?
I've started checking out the source code for PHP. I have just started trying to learn C, and since I have a good working knowledge of PHP, would dissecting typical functions I use daily be of great ...
2
votes
3answers
673 views
ast of c source code in xml?
i'm looking for a software which converts a c source code program to a xml-based ast representation? some sort of markup language.
example:
[function name="set_foo"]
[parameters]
[parameter ...
0
votes
3answers
2k views
Anyone has a working viterbi decoder source code with descriptions?
I am having trouble trying to understand some viterbi decoder source codes. I understand the concept and everything but I just don't get some of the calculations that appears in viterbi decoding as ...
1
vote
6answers
412 views
Find where a function (or macro) is called with a given argument
I need to know if it's possible to use a tool like ctags or cscope to find all the usages of a function but filter the results depending on the value of one of its parameters.
For example, let's ...
2
votes
4answers
663 views
Removing strings from C source code
Can anyone point me to a program that strips off strings from C source code? Example
#include <stdio.h>
static const char *place = "world";
char * multiline_str = "one \
two \
three\n";
int ...
13
votes
4answers
1k views
How to find (and replace) all old C-style data type casts in my C++ source code?
How can I locate all old C-style cast in my source?
I'm using Visual Studio, may be there is some compilator warning that I have to enable? Or use some software tool for this?
8
votes
15answers
819 views
Why are some functions extremely long? (ideas needed for an academic research!)
I am writing a small academic research project about extremely long functions. Obviously, I am not looking for examples for bad programming, but for examples of 100, 200 and 600 lines long functions ...
2
votes
4answers
225 views
Where can I learn how best to represent procedural code in a language-independent manner ready for transformations?
For my source-code transforming (Fortran and C) numerical automatic differentiation engine project PARADE, I need a language-independent representation of procedural program code. The IL (intermediate ...
0
votes
3answers
779 views
How do I extract a specific function from a C/C++ source code file for subsequent processing
I am looking for an easy way to print out a specific function from within some C/C++ source code. For example, assume that test.c has several functions defined within it. I want to be able to print ...
3
votes
4answers
2k views
How do I start reading the PHP source code?
The source code for the PHP interpreter is absolutely mystifying to me. The thing is, I'd like to learn more about it, so I can avoid making Schlemiel-style mistakes.
This is a huge project, some ...
