why little endian and big endian came?y they using
differently? y they not used commonly ?wt is application of
little and big ?
Answer / deadzg_devil
These are the two different architechture for handling
memory storage.
Little endian signifies lower order bit will be represented
first in memory and then the higher order bits. eg Intel
based computers
Big endian is just the opposit case. Eg. Motorola based
computers.
| Is This Answer Correct ? | 0 Yes | 0 No |
#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?
How many types of functions are there in c?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Do you know what are bitwise shift operators in c programming?
Explain why C language is procedural?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
int x=sizeof(!5.856); What will value of variable x?
What are the similarities between c and c++?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
YBJBU6
difference between Low, Middle, High Level languages in c ?