anksingla

anksingla

Member

Member since
Jun 9, 2014
Last active
Oct 14, 2014
Total activities
0

Activity feed

Recent contributions

  1. #Threads

    problem in c program..

    Below program is to print the values of 2d array s. int s[][2]={12,1,13,214,3}; int i,j; int (*p)[2]; int *pint; For(i=0;i<3;++i) { p=&s;...

  2. #Threads

    96a9dc64-bf73-44b1-b941-a2dac7694550

    Shashank MogheExplicit typecasting, I believe? The question to follow is, whether it is necessary.i also think so..but in a below program i...

  3. #Threads

    problem in c..

    int s[][2]={12,1,13,214,3}; int i,j; int (*p)[2]; int *pint; For(i=0;i<3;++i) { p=&s; pint=(int*)p; for(j=0;j<2;++j) printf("%d",*(pint+j)); } This wil...

  4. #Threads

    a99fbc7a-2284-4b34-827f-04dd2b31aa3a

    A.V.RamaniOne way of looking at multiplying by 11 is 'Shift and Add'. In effect adding ten times the number to the number....

  5. #Threads

    e33b9a90-8206-45c1-a6f4-5b7e9b67ba2b

    Anoop KumarOops.... next number will be 161051. #-Link-Snipped-# , has provided you the right solution. 😉I forgot to mention that question is...

  6. #Threads

    00ffa0ef-0c7c-4e54-9e5d-07641a0eedb8

    Manish GoyalVery Simple Program, Simple Loop, and then a single line if you know multiplicationYeah this program is a simple multiplication of...

  7. #Threads

    832d0252-6b25-416c-9dc7-9eeca60ab651

    Sanyam KhuranaFirst show us what you have done so far?i am using net on my phone...can't show you the code that i...

  8. #Threads

    83a41c76-d6bf-4c4c-8c7f-198581b3dca0

    Yeah right Anoop KumarWhat is next number?? is it 15101051?

  9. #Threads

    Need help in a program..

    1 11 121 1331 14641 can anyone tell the code of this pattern.??

  10. #Threads

    Data Structure books??

    Which would be the good book for data structure for beginners...??

  11. #Threads

    5e91ce94-57fc-488d-a426-378705b3d20a

    radha gogiasee in java by default each decimal value is taken as double so u need to explicitly mention it be ,say...

  12. #Threads

    Problem in java program

    byte b=10 shows no error but float f =10.0 shows error that double found.. why??