User profile: JAI SINGH

User info
User name:JAI SINGH
Email:jaicse86@gmail.com
Name:jai singh
Location:varanasi
Statistical data
Birthdate:Aug 8, 1989
Gender:Male
Occupation:Programmer
Skills:C
C++
Java
C#
History
Joined:
Number of posts:66
Latest posts:

C
Is object oriented programming is posible in C if yes then which compiler should I use if no then w...

bit fields
struct A { int a:4; int b:5; }; typedef struct A A; int main(void) { A x; x.a=-5 p...

operating system error
Hi... I was using Ubntu 12.10 for C/C++ but when I started my computer Today then...

bit fields
@vald but we know that bit fields are unsigned and for -6 we can use 110 ...

recursion
void test(int); int main() { test(5); while(!kbhit()); return 0; } void test(int x) { i...