8
votes
8answers
392 views
why “f = f++” is unsafe in c?
I read about 'side effect' from this website:
but still not understand why f = f++ considered unsafe ?
Can somebody explain?
0
votes
1answer
145 views
What’s the strangest corner case you’ve seen in C/C++ ? [closed]
What’s the strangest corner case you’ve seen in C/C++ ?
1
vote
8answers
151 views
C return pointer question
Hi, does this code
char *a()
{
char *t = malloc(8);
t[0] = 'a';
t[1] = 'b';
...
t[7] = 'h';
return t;
}
int main(void)
{
char *x = a();
//do somet …
1
vote
11answers
213 views
C convert from int to char
Hi, I have a simple code
char t = (char)(3000);
Then value of t is -72. The hex value of 3000 is 0xBB8. I couldn't understand why the value of t is -72.
Thanks for your answers. …
0
votes
1answer
66 views
help with a program-(stuck and i dunno why) [closed]
hi,i build a program -can download from here !!beware: EXE -
(i sorry about links but i cant post more then one link so i delete the http before each link)
{you need yo enter an u …
1
vote
3answers
81 views
programing quiz sites(like projecteuler) [closed]
Possible Duplicate:
Websites like projecteuler.net
hi i solve some questions in project Euler and kinda stuck on the hard one :)
I look for other sites like projecteuler ( …
19
votes
28answers
1k views
Give me an assignment in C
I am teaching myself C, with several books as well as online tutorials. I am in the middle of Greg Perry's book Absolute Beginner's Guide to C. I know I learn best by doing, so I n …
3
votes
2answers
63 views
Do you use invariants when you program?
I am taking an intermediate programming course which stresses the use of invariants. I have never used them before and they seem to take up more time to create. Does the software …
5
votes
11answers
129 views
How to avoid “bad” requirements
I frequently hear "X% of software project fail due to bad requirements". The X in that statement has ranged from about 70 to 95. However, I seldom hear how requirements go bad. …
2
votes
5answers
157 views
lowest and highest memory address in c?
Is there a way to print out the lowest and highest memory address that an Operating system can address in c?
2
votes
10answers
185 views
memory address positive or negative value in c?
in c, i tried to print out address of variable and address of some function.
I got one is negative value, the other is positive value.
My question is: why does C not represent in …
3
votes
5answers
107 views
What are the overall most valuable/profitable programming expertises?
Hi,
I would like to know if it's possible to point it out, and if so If anyone would know to summarize, considering things well beyond the basics and expectable of course, what wo …
2
votes
6answers
97 views
Initialize a 2D-array at declarationtime in the C programming language
How do I initialize a 2D array with 0s when I declare it?
double myArray[3][12] = ?
1
vote
3answers
120 views
Can we change the size of size_t in C?
Can we change the size of size_t in C?
1
vote
3answers
82 views
Self taught or school taught, what makes a better programmer and why? [closed]
We've probably all worked with both self taught and school taught programmers. What differentiates them for you? And do you think the domain that the work in (client server vs game …
