Submitted Questions

  • C code explanation

    struct marks { int p:3; int c:3; int m:2; }; void main() { struct marks s={2,-6,5}; printf("%d%d%d",s.p,s.c,s.m); }

    dekcah

    • Feb 5th, 2012

    2, 2, 1

    sathish arar

    • Jan 30th, 2012

    2,-6,5