aib

3,842
Reputation
216 views

Registered User

Name aib
Member for 1 year
Seen 21 hours ago
Website
Location TR
Age 25
My language of choice is C. I'm learning and starting to like C++, but I still believe that there are only a handful of people on the planet who can write proper C++ code.
22h
answered C stdlib .h’s on C++ and malloc/realloc
1d
revised Write a Linked List‐based variant of Q2. Following will be the function prototype:
edited tags
2d
revised Adding gdb to MinGW
added 123 characters in body
2d
revised Call Back Functions
added 409 characters in body
Nov
26
answered Call Back Functions
Nov
26
answered Creating a hotmail account from C#
Nov
17
revised How to convert std::string to LPCWSTR in C++ (Unicode)
updated URL
Nov
17
answered How do you actually use a C library?
Nov
16
comment C program to compare integers without using logical operators?
I went for the latter as well, but still wanted to see a strict literal answer here. And maybe point out the pointlessness of such an excercise. (Now, if the question had said "two's complement signed integers" or "arithmetic logic" instead of "C", it would have been another matter.)
Nov
16
answered C program to compare integers without using logical operators?
Nov
16
revised C program to compare integers without using logical operators?
edited tags
Nov
9
answered Storing files on the filesystem
Nov
9
revised Dependency injection in C++
typo
Nov
9
comment Overlaying on a 3D fullscreen application
excellent. Coupled with your other answer, this is what I've been looking for. Thanks.
Nov
5
revised how to rotate the given string to left or right in C?
s/if/when to clarify
Nov
5
accepted return values from a struct
Nov
5
answered return values from a struct
Nov
3
comment Change string pointed by pointer
const_cast<> is C++.
Nov
3
comment Overlaying on a 3D fullscreen application
DLL wrapping is a good technique that I've done in the past; thanks for the D3D pointers. However, I think Steam has a better way of doing this. I guess I should do some more research.
Oct
31
comment #define for unsigned long
That's precisely why you shouldn't be using `#define`s.
Oct
29
comment How to UDP send and receive on same port?
excellent answer.
Oct
29
comment complexity help..O(n^2), 0(nlog) etc
log(n) or log2(n)
Oct
27
comment how to CAST a double to int in C
Question: What if floor(14.6) returns 13.99999?
Oct
27
comment Best IDE: Eclipse, Netbeans, CodeBlocks, Visual Studio, Others?
Could you maybe add some punctuation to the second paragraph?
Oct
27
awarded  Civic Duty
Oct
23
answered How do restrict access to a class property to only within the same namespace
Oct
21
revised can you have a private member of the same class as the base class you’re inheriting?
...
Oct
14
awarded  Good Answer
Oct
12
revised How to append querystring in url using objective c ?
edited tags
Oct
9
answered Which code is more readable?
Sep
22
comment Why doesn’t this crash? Aren’t I dividing by zero here?
Oh. Is that just for floats, then?
Sep
20
answered Why doesn’t this crash? Aren’t I dividing by zero here?
Aug
31
comment Rounding Number to 2 Decimal Places in C
@Michael: So are //.
Aug
31
comment dlsym/dlopen with runtime arguments
@adk: Unions are completely different types, so you'd be in trouble unless the function actually returned a union.
Aug
31
revised Reflection Support in C
fixed hyperlink
Aug
28
revised How would one implement an FPS camera?
deleted 171 characters in body
Aug
28
revised How would one implement an FPS camera?
Added camera and control information; added 35 characters in body
Aug
28
answered How would one implement an FPS camera?
Aug
28
awarded  Cleanup
Aug
28
comment Rounding Number to 2 Decimal Places in C
@Sinan: Why the edit? @AraK: No, you should take care of the size :). Use snprintf().
Aug
28
revised Moving to Python 2.6.x
fixed title
Aug
26
answered Is the memory of a (character) array freed by going out of scope?
Aug
25
answered How does a blur gauss algorithm look like? Are there examples of implementation?
Aug
25
comment Does going out of scope like this free the associated memory?
You should not cast the return value of malloc, since this is C.
Aug
24
answered How do you get started when trying to understand the code of a 3D game engine (like id Tech 3)?
Aug
24
comment Game engine map editor. SDL->wxWidgets
SDL doesn't use a main() macro and can be initialized in parts, but I'd guess that the message loops would overlap. (SDL requires you to implement your own loop.)
Aug
22
comment interleaving bits with a mask
It can be done with a loop, using primarily bit operations
Aug
21
answered How to map atan2() to degrees 0-360
Aug
13
awarded  Yearling
Aug
9
answered how do procedure calls work in assembler?