Search Results

Search: Posts Made By: deepthi.s
Forum: Programming 05-12-2009
3,508
Posted By deepthi.s
code
len = strlen(szInput);
i = atof ( szInput );
m = atol ( szInput );
temp =m;
while (temp != 0)
{
temp = temp/10;
cnt++;
}
ff = i-m;

len = len-cnt;

for...
Forum: SCO 03-31-2009
4,177
Posted By deepthi.s
mount the pendrive on the unixware 7.1.4
please let me know how to mount the pendrive on the unixware
Forum: Programming 08-22-2008
4,209
Posted By deepthi.s
Purpose of empty Class
class A
{};

int main()
{
A a;
}

What is the purpose of such empty classes in C++?Why is it allowed in the language specification?
Forum: Programming 08-22-2008
2,505
Posted By deepthi.s
Inline function inside Classes
#include <iostream>
using namespace std;

class A
{
public:
int Getvalue() { return i;}

private:
int i;
};

int main()
{}

The above code compiles properly in g++ or in...
Forum: Programming 08-22-2008
62,595
Posted By deepthi.s
I am using vxworks as an operating system, and...
I am using vxworks as an operating system, and "cp" here only will be able to copy a file.
vxWorks has function xcopy which does recursive copy, but when i use same function to copy the NFS Mounted...
Forum: Programming 08-22-2008
62,595
Posted By deepthi.s
recursive copy of the directory
I want to copy a directory recursively ( it again has directories) and the directory is on windows and is nfsmounted in vxWorks, i am using unix to develop the code for this, can any one suggest me...
18,442
Posted By deepthi.s
i can not use rm -r *,So i want the similar...
i can not use rm -r *,So i want the similar functionality to be done by the script which will extract contents of a directory one at a time, and then check whether it is a file or directory then if...
18,442
Posted By deepthi.s
delete files recursively in the specified directory
I have to write a shell script which can delete all the files and directories recursively inside the specified directory but should not delete the specified directory.

Please some body help me in...
19,346
Posted By deepthi.s
Can we use the touch utility to modify the time...
Can we use the touch utility to modify the time stamp of the file on the nfsMounted device, if not tell me any other options that can be used
19,346
Posted By deepthi.s
Can you please explain in detail how to use touch...
Can you please explain in detail how to use touch in C code for changing the modification time
19,346
Posted By deepthi.s
How to change the file modification time of a file on nfs mount point
Hi

I am accessing a file on nfs mounted device, after completing using of the file, i am tring to restore the access time and modification times of the file.

So i got the previous modified...
Showing results 1 to 11 of 11

 
All times are GMT -4. The time now is 07:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy