How we will connect multiple client ? (without using
fork,thread)

Answers were Sorted based on User's Feedback



How we will connect multiple client ? (without using fork,thread)..

Answer / amaresh_83

hi
plz send me (avirus_944@yahoo.co.in)

Thanks
Amaresh...

Is This Answer Correct ?    1 Yes 0 No

How we will connect multiple client ? (without using fork,thread)..

Answer / jay

Using select() in socket, we can connect multiple clients.

Please go through the uses of select().

Is This Answer Correct ?    1 Yes 1 No

How we will connect multiple client ? (without using fork,thread)..

Answer / vrodn

select func.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Code Interview Questions

main() { char * strA; char * strB = I am OK; memcpy( strA, strB, 6); } a. Runtime error. b. I am OK c. Compile error d. I am O

4 Answers   HCL,


how to return a multiple value from a function?

5 Answers   Wipro,


write a c program to Reverse a given string using string function and also without string function

1 Answers  


const int perplexed = 2; #define perplexed 3 main() { #ifdef perplexed #undef perplexed #define perplexed 4 #endif printf("%d",perplexed); } a. 0 b. 2 c. 4 d. none of the above

1 Answers   emc2, HCL,


main() { int i; i = abc(); printf("%d",i); } abc() { _AX = 1000; }

2 Answers  


void main() { if(~0 == (unsigned int)-1) printf(“You can answer this if you know how values are represented in memory”); }

1 Answers  


main() { unsigned char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

1 Answers  


main() { char *p; int *q; long *r; p=q=r=0; p++; q++; r++; printf("%p...%p...%p",p,q,r); }

1 Answers  


#include<stdio.h> main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

1 Answers  


main() { int i; printf("%d",scanf("%d",&i)); // value 10 is given as input here }

2 Answers   IBM,


what is brs test reply me email me kashifabbas514@gmail.com

0 Answers  


why java is platform independent?

13 Answers   Wipro,


Categories