Difference between MAC vs. IP Addressing


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

Post New Answer

More C Interview Questions

What happens if you free a pointer twice?

0 Answers  


why programming language C is still used in operating system's kernel??

1 Answers   Wipro,


4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above

6 Answers   Accenture,


#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā€); #endif

4 Answers   IBM, Vector,


In a byte, what is the maximum decimal number that you can accommodate?

0 Answers  






int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?

4 Answers   TCS,


Do variables need to be initialized?

0 Answers  


State the difference between x3 and x[3].

0 Answers   Aricent,


What does %d do in c?

0 Answers  


wat are the two methods for swapping two numbers without using temp variable??

2 Answers  


12344321 123 321 12 21 1 1 how i print this program??

5 Answers   DSR Management, Winit,


How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)

1 Answers   iLantus, Subex,


Categories