Search Results

Search: Posts Made By: avdtech
Forum: Programming 05-01-2006
2,354
Posted By avdtech
I think the warning is not because an int type is...
I think the warning is not because an int type is assigned to a char type ( infact, p when declared as char **p; is definetly not a character variable). The warning comes because of the fact that we...
Forum: Programming 08-27-2005
2,340
Posted By avdtech
See fopen() library function ... $man fopen
See fopen() library function ...
$man fopen
Forum: Programming 08-22-2005
3,077
Posted By avdtech
Or you can use Shell's "Here Documents" if you...
Or you can use Shell's "Here Documents" if you wanna put your command in the same place as your data on which that command will act.

$cat findpattern.sh
grep 'pattern' <<End # Here document tag...
Forum: Programming 08-22-2005
10,966
Posted By avdtech
In place of clear_text_password=$(my_C_program)...
In place of
clear_text_password=$(my_C_program)

clear_text_password=`my_C_program`
can be used
Forum: Programming 03-09-2005
37,891
Posted By avdtech
and to execute these unix commands through C...
and to execute these unix commands through C program ... use system() library function...
Forum: Programming 03-08-2005
10,668
Posted By avdtech
The Pthreads API is defined in the ANSI/IEEE...
The Pthreads API is defined in the ANSI/IEEE POSIX 1003.1 - 1995 standard. It has to be purchased from IEEE.

for a good tutorial on pthreads, chk out.......
Forum: Programming 03-08-2005
3,457
Posted By avdtech
Thank u
Thank you Jim...!!!
Forum: Programming 03-01-2005
3,457
Posted By avdtech
GROUP BY clause functionality in a C Program
Hi All,

How can I obtain a GROUP BY functionality from a C program on a File....

suppose the file is like this...

Quantity Fruit

20 Mango
30 ...
Showing results 1 to 8 of 8

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