/* Write any C program using write() system call. */
#include
#include
int main()
{
char msg[]="hello world";
write(1,msg,strlen(msg));
return 0;
}
See Also:
Write any C program using write() system call.
Write C program that display name of all empty file and remove from directory.
#include
#include
int main()
{
char msg[]="hello world";
write(1,msg,strlen(msg));
return 0;
}
See Also:
Write any C program using write() system call.
Write C program that display name of all empty file and remove from directory.
Comments
Post a Comment