私はCでこれをやろうとしています.Pythonでいくつかのコードを持っていますが、Cでそれを機能させる方法がわかりません.高級言語に慣れています.Cは私にとって本当に初めてです.どこから始めればいいのかわからないので、翻訳を手伝ってください...
Python コード:
archivo = open('passwd.txt')
for linea in archivo:
campos = linea.strip().split(':')
print 'User',campos[0],'has shell',campos[6]
archivo.close()
passwd.txt は次のとおりです。
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/bin/sh
bin:x:2:2:bin:/bin:/bin/sh
出力は次のようになります。
User root has shell /bin/bash
User daemon has shell /bin/sh
User bin has shell /bin/sh
誰でも私を助けることができますか?