anksingla
Member
- Member since
- Jun 9, 2014
- Last active
- Oct 14, 2014
- Total activities
- 0
Activity feed
Recent contributions
-
#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;...
-
#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...
-
#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...
-
#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....
-
#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...
-
#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...