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 |
How can I list all of the predefined identifiers?
What is use of pointer?
WHAT IS HIGH LEVEL LANGUAGE?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
create an SINGLE LINKED LISTS and reverse the data in the lists completely
#define d 10+10 main() { printf("%d",d*d); }
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Explain what is the stack?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
program for validity of triangle from 3 side
how to make a scientific calculater ?