C言語のお勉強ページに対するご意見・ご感想スレ
21:☆ハイパー名無しタイム☆2008/11/24(月) 17:16:11AAS
演習7-2.cの終わりの方の

puts("左にシフトした後の内容");
nol = lrotate(no, n);
print_bits(nol);

return 0;
}
の  nol = lrotate(no, n); じゃなくて
   nol = rrotate(no, n); では?
1-AA