what is the differnce between AF_INET and PF_INET?
Answer Posted / karn
AF stands for Address Family
PF for Protocol Family
| Is This Answer Correct ? | 32 Yes | 0 No |
Post New Answer View All Answers
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is pointer in c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Do you know the use of 'auto' keyword?
What is use of integral promotions in c?
What will be your course of action for a push operation?
Subtract Two Number Without Using Subtraction Operator
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is the difference between memcpy and memmove?
How many data structures are there in c?
Why C language is a procedural language?
What functions are in conio h?
What is the data segment that is followed by c?
Why is c known as a mother language?
Write a factorial program using C.