My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 20 attachment: lvc.c (262 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include<stdio.h>
#include<string.h>

int main()
{

char dev[100],buffer[120];
printf("\nEnter the name of the device");
scanf("%[^\n]",dev);
sprintf(buffer,"./lvscript.sh %s",dev);
// printf("%s",buffer);
system(buffer);

return 0;

}
Powered by Google Project Hosting