Categories
- 4th semester (27)
- 5th semester (3)
- ADA (13)
- Assembly Level Language (12)
- BE (45)
- C Language Programming (5)
- C language (20)
- C++ Language (5)
- CCP Lab programing (3)
- Computer Programming Lab (3)
- DAA Lab Programming (13)
- Data Structure and C++ laboratory Program (6)
- Data Structure and C++ labotary Program (5)
- Design and Analysis of algorithm (14)
- First Year (5)
- MASM (12)
- Microprocessor (12)
- Microprocessor lab program (12)
- System Software & OS Laboratory (5)
- Unix program (4)
- bachelor of engineering (30)
- basic (1)
- basic mathematics (2)
- beginners (10)
- c++ program (9)
- calculations (7)
- computer science (30)
- downloadable (5)
- engineering syllabus (4)
- simple program (6)
Trend Posts
Blogger news
Author
Followers
Tuesday, August 12, 2014
/*C program to create a file with 16 bytes of arbitrary data from the beginning and another 16 bytes of arbitrary data from an offset of 48.Display the following file contents to demonstrate how the hole in a file is handled with using Command Line Arguments*/
#include<stdio.h>
#include<fcntl.h>
#include"string.h"
int main(int argc,char *argv[])
{
int n=creat(argv[1],"w");
char ch[16]="hello world how are";
char str[20]="od -c ";
char mode[20]="chmod 777 ";
write(n,ch,16);
lseek(n,48,SEEK_SET);
write(n,ch,16);
strcat(mode,argv[1]);
system(mode);
strcat(str,argv[1]);
system(str);
return(0);
}
--------------------------------
screenshot:
#include<stdio.h>
#include<fcntl.h>
#include"string.h"
int main(int argc,char *argv[])
{
int n=creat(argv[1],"w");
char ch[16]="hello world how are";
char str[20]="od -c ";
char mode[20]="chmod 777 ";
write(n,ch,16);
lseek(n,48,SEEK_SET);
write(n,ch,16);
strcat(mode,argv[1]);
system(mode);
strcat(str,argv[1]);
system(str);
return(0);
}
--------------------------------
screenshot:
Subscribe to:
Post Comments (Atom)
1 comments:
I am extremely impressed along with your writing abilities and also with the format in your blog. Anyway stay up to the excellent high quality writing, it's rare to find a nice weblog like this one these days.
Post a Comment
You are very Important to Us...
STAY TUNE...