-
-
-
What is pointer?
Pointer is used to store the address of given variable
-
-
-
-
-
-
-
-
What is a modulus operator? What are the restrictions of a modulus operator?
A Modulus operator gives the remainder value. The result of x%y is obtained by(x-(x/y)*y). This operator is applied only to integral operands and cannot be applied to float or double.
-
-
-
-
Program listing IP addresses of all active clients.
Write a program which sends a token on network and give the list of IP addresses of all the client currently active ?(program is running on server)
-
-
-
-
What is the quickest searching method to use?
A binary search, such as bsearch() performs, is much faster than a linear search. A hashing algorithm can provide even faster searching. One particularly interesting and fast method for searching is to keep the data in a “digital trie.” A digital trie offers the prospect of being able to search for an item in essentially a constant amount of time, independent of how many items are in the data set....
-
C Interview Questions
Ans