Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
Mar 1, 2005 7:55 pm
6037
I am designing a multi-threaded application in C++. I have many threads. And I wonder if there is a probability of an error when two or more thread call the...
Hi friends.. Could u explain the reason behind this?? 1) main() { float a=0.7; if(a<0.7) { printf("c"); } else { printf("C++); } } OUTPUT IS: c WHY???? 2) ...
 Hi , To make clear the concept of && operation refer to the truth table given below. b c a TRUE TRUE 1 TRUE FLASE 0 FALSE (X dont care) 0 as we can...
Amol Vishram Natekar
natekar_amol@...
Mar 2, 2005 11:27 am
6041
... Use Recursion to print all the numbers. This is will help not only help u to print upto 100 but also more than that. For eg, # define N 100 void main() { ...
Please clarify this for me.. main() { float a; scanf("%f",&a); printf("%f",a+a+a); printf("%f",3*a); } would the two printf()s print the same values for any...
hi i am pankaj tiwari.i need a c++ project on "conversion of nondeterministic finite automata to deterministic finite automata" plssss make it soon ...
Hai, Let me explain the situation that exists. Initially the project occupies memory of 192 MB RAM in Linux. It was shown in System Monitor. It was allowed to...
modify the code as..... #include<stdio.h> int main(void) { int a,b,i; int x,sum=0; scanf("%d%d",&a,&b); //a= 2(power32) and b=2 int pow=0; for(i=0;i<32;i++) { ...
Hello to All I am posting some opening for the ness technology(www.ness.com).Please find the info in attached .xls file. For reference you can use Use Emp ID...
hey guys, when i try compiling a struct, an error appears saying that there's a problem converting const char 7 to char 20, yet in the program there's no...
hi friends i am bit confused about the output of this code main() { int i = 0 ; int j = 0; while ( i++<100) { while (j++<200) { if ( j==150) break ; else ...
 DEAR SIR, I WANT TO KNOW THT WAT VALUE MALLOC(),& CALLOC()RETURN?? ACTUALLY I KNOW THT MALLOC() RETRURN VOID POINTER AND WE HV TO PROVIDE TYPE CASTING...
shilpi nema
job4meonly@...
Mar 2, 2005 11:28 am
6056
use shift operation. Left shift multiplies the number by two per shift and right shift divides the number by two per shift Alex Pally ...
hi friends, normally for programms for numerical methods we mention the equation of function in source code .i want to input the eqution through a string of...
To be precise... We need to cast pointer to uint before subtracting otherwise it returns in this case 1. Thanks, Shyam ... __________________________________ ...
Hi Friends ! A family member of mine is missing. Please help me find him. His details are : Name : Bappa Bandyopadhyay Age : 35 Height : 5'4" Missing since :...
Hi Grp Members, I have got a very very small query can anyone pls clarify it.... What are all the possible ways to access a function in the DERIVED CLASS from...
Multi programming : more than one program in Main memory . ( Here we consider about memory . Many programs are stored in Main memory at a particuar time is...
hello friends i have a probem in arrys in 1 dimensional arrays we can access an array elements as *(arr + i) where arr is an array and i is the element no. ...
hi, i know the following code won't work but i don't understand why. can someone help? #include <pwd.h> main() { struct passwd *getpwnam(), *rp, *dp; rp =...