Tagged Questions
45
votes
37answers
3k views
What is a good first C app to build, besides “Hello World”
I'm learning the C language on my Mac with Xcode.
I've created a "Hello World" app, and played around with simple maths.
What should be my next goal? If someone was to ask me about PHP for example, ...
18
votes
6answers
7k views
A Guide for Creating your own Library for Cocoa(touch) development
I'm currently using a lot of the same subclassed objects with custom methods. It would be more convenient to create my own library which I can use for several projects.
The goal is to have my own ...
10
votes
1answer
191 views
fprintf memory leak
I am using the Instruments from XCode 4.2.1 to find some memory leaks.
I have found a very weird (at least for me) memory leak:
(The function values_table_get_value returns a double, and output = ...
9
votes
6answers
3k views
GCC memory leak detection equivalent to Microsoft crtdbg.h?
After many years of working on a general-purpose C++ library using the Microsoft MSVC compiler in Visual Studio, we are now porting it to Linux/Mac OS X (pray for us). I have become accustomed and ...
8
votes
3answers
7k views
How can I avoid “duplicate symbol” errors in xcode with shared static libraries?
I have static libraries A, B and C organized into Xcode projects. A and B depend on C. When I build an iPhone project that depends on A and B, I get a linker error that a duplicate symbol (from C) ...
7
votes
2answers
225 views
cmake + xcode : error 'Build setting PRODUCT_NAME undefined'
I'm using cmake 2.8.3 to generate a C/C++ project file for xcode 3.2.5 ; the build goes generally fine, but I have to manually set the "Product Name" each time I generate the xcode project (in Project ...
7
votes
3answers
514 views
Compile C library as iPhone framework?
Each C/C++ library has some amount of headers that should be used with that library. And if you're use more than 1-2 libraries, custom header paths is kind of headache.
So I thought: is there a way ...
6
votes
3answers
1k views
Which macro to wrap Mac OS X specific code in C/C++
While reading various C and C++ sources, I have encountered two macros __APPLE__ and __OSX__. I found plenty of use of __OSX__ in various codes, especially those originating from *BSD systems.
...
5
votes
1answer
88 views
How to hide object filenames in a static library?
I want to deliver a C static library and hide the internal implementation as much as possible. I am using a code obfuscator on my code and that works very well for making symbols incomprhensible for ...
5
votes
3answers
216 views
Is divide slower than Multiply?
Ok, this might sound like a strange question but it is an interesting one. I am coding for iOS and have been told that it is always best to multiply rather than divide values as it is faster.
I know ...
5
votes
4answers
323 views
Xcode to develop for the Arduino
Please read this well to make sure you understand what I want to do.
I DO want Xcode to be able to compile, but only so I can debug in Xcode.
I do NOT want to use Xcode to compile or upload the code ...
5
votes
3answers
124 views
Read input from console in OSX
I'm using scanf() to read user input on terminal in a console application. scanf waits until the user hits the return key to read. Is there a way to read the user input on each keystroke?
5
votes
3answers
142 views
How do I tell gdb how long my zero-length array is?
Slightly oxymoronic title! Bonus points for Xcode answer but it's a gdb question.
If I have a standard, statically sized array gdb will print all its elements [and Xcode will let me browse through ...
5
votes
3answers
651 views
C, Objective-C preprocessor output
Is there a way to get pre-processed C/Objective-C code? I have some files I acquired and would like to see the code produced by some #defines.
5
votes
5answers
2k views
#import still gets “duplicate symbol” error
When I compile my iPhone app, xCode gives "duplicate symbol" error for my variables in MyConstants.h
I thought if I used:
#import "MyConstants.h"
it would avoid that?
But I still have the ...
5
votes
11answers
245 views
How can I get my program to do anything when a “multidigit number with all digits identical” appears?
my program generates random numbers with up to 6 digits with
int number = arc4random % 1000000;
I want that my program do something when a number like 66 or 4444 or 77777 appears (multidigit ...
4
votes
3answers
117 views
How can I determine the closest point to the mouse on a certain shape?
I have created a program that restricts the mouse to a certain region based on a black/white bitmap. The program is 100% functional as-is, but uses an inaccurate, albeit fast, algorithm for ...
4
votes
3answers
159 views
Combine static libraries
I tried the approach in this question, but it seems the linux version of ar is not the same as the mac version since I failed to combine the object files again.
What I basically want to do is is ...
4
votes
2answers
751 views
GDB question: Pretty-Printing a 2D Array?
I have a 2d array matrix[10][10] that I'd like to inspect at debug time.
I understand that I can do this in GDB using
p *matrix@10
But it outputs this in one line, making it difficult to read.
Is ...
4
votes
4answers
491 views
xcode compile console application - c programming
Is it possible to use Xcode using iPhone 3.1.3 SDK to compile a standard C program that will work on the iphone? I'm trying to use xcode to compile a basic 'hello world' but to no avail. Do I need to ...
4
votes
4answers
4k views
“EXC_BAD_ACCESS: Unable to restore previously selected frame” Error, Array size?
I have an algorithm for creating the sieve of Eratosthenes and pulling primes from it. It lets you enter a max value for the sieve and the algorithm gives you the primes below that value and stores ...
4
votes
5answers
1k views
Is it possible to customize the indent style of XCode?
For example, I'd like to not indent namespaces in C++ code, but the prefpane doesn't seem to have any place to make a decision of this granularity. Is there some hidden config file or something? Or am ...
4
votes
8answers
2k views
Getting Started with C and Objective-C
I am eventually wanting to program in Objective-C to write programs for OS X and possibly the iPhone. I do not have any direct experience with C and I come from a web programming background. I am ...
3
votes
1answer
40 views
How do I make XCode show me warnings in my C code?
When I build using a Makefile I add -Wall -g to my gcc args to get warnings.
So when I build this code:
#include <stdio.h>
int main()
{
}
I get this warning:
main.c: In function ‘main’:
...
3
votes
2answers
68 views
How can I access the Apple Events “openFile” event in C++?
I'm interested in writing a small utility in C++ for Mac OS X to read, parse, save (over)write a file. I don't need any GUI, menus, or windows.
What type of project template do I need to start with ...
3
votes
1answer
87 views
Using X11 in XCode
In my Xcode project, I want to use X11 framework. X11 is installed on my computer since when I add -L/usr/X11R6/lib to my makefile, my program runs without problems.
How can I link X11 framework to ...
3
votes
2answers
97 views
ctime on iOS device not measuring time properly
I need to calculate the time that a piece of my code takes to execute, right now I am using clock_t like so:
clock_t start = clock();
/* Do something here */
float executionTime = ...
3
votes
1answer
238 views
loading C shared library with Xcode project Objective C
I'm a beginner with MacOSX and I want to know if it's possible to load a shared library (dylib) written in "C" with a Xcode project written in Objective C and if yes how can I do it.
If you have an ...
3
votes
4answers
409 views
What's the term *ANSI C* specifies if it used with GNU89, C89, GNU99, C99?
In Xcode IDE, I have an option to set C language dialect one of
ANSI C
GNU89
C89
GNU99
C99
Compiler Default
I understand what they mean except ANSI C. Because As I know, ANSI C is just one of C89 ...
3
votes
1answer
649 views
long long int in C, Mac OS X, Xcode 3.2.5, field width
In this sample:
long long int x = 1<<38;
NSLog(@"Hello, World!, %qi", x);
I got "warning: left shift count >= width of type", and the value zero for x.
The length of a long long int is 8, so ...
3
votes
8answers
174 views
Data type warning when initializing pointers
I'm currently trying to wrap my head around pointers in C, coming from front-end developing this not an entirely easy endeavour. I'm following this tutorial, and everything is running smoothly until I ...
3
votes
1answer
284 views
Organizing C code in my Xcode project
I want to include a few straight C functions in my Objective C project. Simple stuff like this:
CGPoint vectorSum (CGPoint point1, CGPoint point2) {
return CGPointMake(point1.x+point2.x, ...
3
votes
3answers
269 views
fputs crashing in C on Mac with Xcode
I have a command line app and have the code
chdir("/var");
FILE *scriptFile = fopen("wiki.txt", "w");
fputs("tell application \"Firefox\"\n activate\n",scriptFile);
fclose(scriptFile);
and when ...
3
votes
3answers
638 views
Accented/umlauted characters in C?
I'm just learning about C and got an assignment where we have to translate plain text into morse code and back. (I am mostly familiar with Java so bear with me on the terms I use).
To do this, I have ...
3
votes
1answer
1k views
Giving Command line arguments in Xcode in C program
I am solving my C assignment in Xcode and in that program i have to give command line arguments when running the program and for this i have to user terminal like this:
./a.out myfirstCommand ...
3
votes
4answers
397 views
function name scoping in c
how does function name scoping work across multiple c files?
i'm porting a standard gnu toolchain project to iPhone OS, and using XCode to do it.
the code builds through make, but not through xcode. ...
2
votes
3answers
50 views
C programming and xCode
I am currently enrolled in a C systems programming course, I want to use Xcode (instead of vi). What type of project do I create when I open Xcode?
Thanks
2
votes
0answers
29 views
Preserving Header Directory Structure in Xcode for Static Library
I'm developing a static library in C++ using Xcode. I have an Installation Directory set where it copies all of my public header files, but when I compile it just copies all the headers into one ...
2
votes
1answer
192 views
Abort trap instead of buffer overflow
I've been reading an excellent book Hacking by Jon Erickson. I wanted to compile an buffer overflow example and debug it, but instead of writing outside allocated space, the application just responds ...
2
votes
1answer
64 views
OpenGL from terminal application on OSX
I have a fairly straight forward question. I have a commandline application I'm writing in C, and I want to bring up an OpenGL window from that application itself, not invoking another app. Can I ...
2
votes
3answers
166 views
Compiling C with Objective-C and duplicate symbol linker error (iPhone related)
I have the following file testf.h:
#ifndef TESTF_H_
#define TESTF_H_
int test(int what){
return what;
}
#endif
I included/imported it in TestAppDelegate.h (which is used for other .m files in ...
2
votes
4answers
246 views
c function declaration in xcode / to replace NSLog with something that behaves differently in debug and release
It is a rather silly question! but in the following function how do you use the remaining arguments passed in:
void NSLog(NSString *format, ...)
{
//here I can use "format" but how can I use the ...
2
votes
2answers
197 views
Xcode signal to end app
Does anyone knows what signal Xcode sends to kill a running program? I need an handler to do some cleanup before the programs gets killed. I already tried SIGINT and SIGTERM but it doesn't seem to ...
2
votes
2answers
195 views
Strange problem with compiling c code in xcode when including glext.h
I have this simple code
#include <stdio.h>
#include <OpenGL/glext.h>
#include <OpenGL/gl.h>
int main (int argc, const char * argv[])
{
printf("Hello, ...
2
votes
2answers
352 views
Program received signal: “EXC_BAD_ACCESS”?
I am making a command line program in C using XCode. When running the program, it initially does what it is supposed to do (asks me for a file path). However, when I type in a valid and existing file ...
2
votes
5answers
543 views
format specifier for long double (I want to truncate the 0's after decimal)
I have a 15-digit floating-point number and I need to truncate the trailing zeros after the decimal point. Is there a format specifier for that?
2
votes
5answers
448 views
Passing a pointer to an int array to a c-function
I have a very basic question.
What is wrong with this call?
int params[2] = {1, 1};
return strcmp95((char*)buffer1, (char*)buffer2, (long)stringLength, ¶ms);
The function is defined like ...
2
votes
1answer
327 views
Is there any way of reading from stdin on iPhone, either hardware or emulator?
When I debug an OSX application from XCode, I can communicate with the application's console from the XCode debugging console - for example, the application can printf() to stdout and that's displayed ...
2
votes
2answers
322 views
What is the difference between `cc -std=c99` and `c99` on Mac OS?
Given the following program:
/* Find the sum of all the multiples of 3 or 5 below 1000. */
#include <stdio.h>
unsigned long int method_one(const unsigned long int n);
int
main(int argc, ...
2
votes
1answer
3k views
how do you divide two integers and get a decimal answer?
how do you divide two integers and get a decimal answer? in xcode..
the only thing i could was find http://www.gnu.org/s/libc/manual/html_node/Integer-Division.html
this method will not allow me to ...