Explain high-order bytes.
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
in linking some of os executables are linking name some of them
What is the meaning of 2d in c?
program to locate string with in a string with using strstr function
Can a program have multiple main() functions?
What is default value of global variable in c?
how to generate the length of a string without using len funtion?
What is the use of void pointer and null pointer in c language?
What are structure types in C?
what are bit fields in c?
what is the basis for selection of arrays or pointers as data structure in a program