Explain high-order bytes.
No Answer is Posted For this Question
Be the First to Post Answer
Explain output of printf("Hello World"-'A'+'B'); ?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
Can we access the array using a pointer in c language?
How does struct work in c?
If I have a char * variable pointing to the name of a function ..
What is hash table in c?
code for inverse a matrix
What is meant by high-order and low-order bytes?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
What is Bitwise Operator and how it works?