1. Create test.c Above file contains :--------[kamalma@test-1 C_Programming]$ cat test.c#include#includeint main() { printf("\n I'm kamal \n");return 0;}--------2. Compile it and check its output.OP :-------[kamalma@test-1 C_Programming]$ ./test I'm kamal[kamalma@test-1 C_Programming]$-------3. Modify test.c and add new lines or codes in it. Lets say it test_modifed.c. This file contains following codes :------[kamalma@test-1 C_Programming]$ cat test_modified.c#include#includeint main() { printf("\n I'm kamal \n"); printf("\nI...
Tuesday, 17 July 2012
Subscribe to:
Posts (Atom)