Thanks for your reply
Regards
Saravanan
User Profile
Collapse
-
What is the Difference between Array of pointers and pointer array?
Hi,
Can any one explain me the difference between Array of pointers and pointer array?
Regards
Saravanan -
sending mail without using mail()
Hi
How to send email in php without using mail() ?
Let me know the methods used to send intranet (local email) in php
-
somas -
Thanks!
But i want to know any other method to do this like mid function in VB.Leave a comment:
-
String hadling
Hi,
I need to discard final four charecters of a string. How it can be done?
Thanks in advance -
I need to switch on a digital output for some interval(in milliseconds). The interval should be very accurate. I switched on the output and wait for sometime using Sleep() command then switch off the output. Its working fine with error of 200 micro seconds. But now i need sub-milliseconds, So i used some loops for giving delay instead of Sleep() command. The delay is varied time to time. I think this is due to interruption of other process. Now i...Leave a comment:
-
Is there any WIN32 API commands present for disabling task scheduler?Leave a comment:
-
-
The problem is in the statement
int i=0 ,i++;
The correct code is given below
# include < iostream >
int main()
{
int value []= { 2,4,6,8,10 };
int i=0;
while ( i<5 )
{
std::cout<< value [i] * value [i]<<std::endl;
i++;
}
return 0;
} ...Leave a comment:
-
-
Multi threading
Hi,
I am writing a program using multiple threads. I gave the time slice as 10 ms. I have created a thread named mythread. Sometimes mythread takes 20 or 30 ms for completting its execution. So mythread go to wait state after 10 ms, if any other process wait for execution. But i need to run mythread with out any breakage of execution. Is there any method to run mythread with out any interruption.
Thanks in...
No activity results to display
Show More
Leave a comment: