User profile: SameerThigale

User info
User name:SameerThigale
Name:Sameer Thigale
Statistical data
Birthdate:May 8, 1993
Gender:Male
Occupation:Programmer
Skills:C++
VB .NET
History
Joined:
Number of posts:95
Latest posts:

Null character
What 'manipulations' you talking about?

Order of evaluation of this expression
Thanks randisking and Smac89 :).. But could you explain what associativity really means? with an ex...

Order of evaluation of this expression
[code] int x, *y; x=10; y=&x; ++x = -3543 * 543 % 2 | 4 > 42 && 324 * !423 / ~31 << 3 * *y * si...

GCC-Ubuntu: How come this code works?
I'm using GCC 4.6.3 And it compiles with it :(

GCC-Ubuntu: How come this code works?
[code] #include <stdio.h> int main(void) { int i[0]; i[0]=9; printf("%i\n", i[0]); retu...