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 |
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Why doesn't the code "a[i] = i++;" work?
How pointer is different from array?
What ios diff. Between %e & %f?
Can math operations be performed on a void pointer?
Explain how can I remove the trailing spaces from a string?
I have seen function declarations that look like this
What is meant by recursion?
What is key word in c language?
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above