In which layer of the network datastructure format change is done


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

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


program to print upper & lower triangle of a matrix

2 Answers   TCS,


Give differences between - new and malloc() , delete and free() ?

0 Answers   Genpact,


How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.

1 Answers   HP, TCS,


What are c preprocessors?

0 Answers  


What is the use of parallelize in spark?

0 Answers  


Why can't we initialise member variable of a strucutre

1 Answers  


Do you know what are the properties of union in c?

0 Answers  


How can we open a file in Binary mode and Text mode?what is the difference?

1 Answers   PanTerra,


write a c program to find the sum of five entered numbers using an array named number

0 Answers   TATA,


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

0 Answers  


Write a Program to find whether the given number or string is palindrome.

0 Answers   InterGraph,


Categories