lab46:~/devel$ gcc -o helloC helloC.c lab46:~/devel$ g++ -o helloCPP helloCPP.cc lab46:~/devel$ as -o helloASM helloASM.S lab46:~/devel$ ld -o helloASM helloASM helloASM: file not recognized: File truncated lab46:~/devel$ ls helloASM.S helloC helloC.c helloCPP helloCPP.cc lab46:~/devel$ as -o helloASM.o helloASM.S lab46:~/devel$ ld -o helloASM helloASM.o lab46:~/devel$ ls helloASM helloASM.S helloASM.o helloC helloC.c helloCPP helloCPP.cc lab46:~/devel$