what is the differnce between AF_INET and PF_INET?
Answer Posted / anil jagtap
There is no difference between AF_INET and PF_INET just as
AF_PACKET == PF_PACKET.
The confusion because of some stupid naming standards(?)
| Is This Answer Correct ? | 13 Yes | 28 No |
Post New Answer View All Answers
When is a null pointer used?
What do you mean by command line argument?
Who is the founder of c language?
What is the hardest programming language?
What are bitwise shift operators in c programming?
What are the three constants used in c?
Are the variables argc and argv are local to main?
Explain goto?
What is preprocessor with example?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Explain what is the advantage of a random access file?
Describe how arrays can be passed to a user defined function
What is meant by 'bit masking'?