I was asked to write a program in c which when executed
displays how many no.of clients are connected to the server.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Is c an object oriented programming language?

1 Answers  


What is switch in c?

0 Answers  


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

0 Answers  


Explain what is the difference between far and near ?

0 Answers  


What does char * * argv mean in c?

0 Answers  






What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


Is c is a middle level language?

0 Answers  


how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

0 Answers  


Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?

4 Answers  


Explain what are run-time errors?

0 Answers  


What happens if a header file is included twice?

0 Answers  


Explain the use of #pragma exit?

0 Answers  


Categories