In which layer of the network datastructure format change is done
#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?
program to print upper & lower triangle of a matrix
Give differences between - new and malloc() , delete and free() ?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What are c preprocessors?
What is the use of parallelize in spark?
Why can't we initialise member variable of a strucutre
Do you know what are the properties of union in c?
How can we open a file in Binary mode and Text mode?what is the difference?
write a c program to find the sum of five entered numbers using an array named number
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Write a Program to find whether the given number or string is palindrome.