Explain high-order bytes.
No Answer is Posted For this Question
Be the First to Post Answer
How do I get an accurate error status return from system on ms-dos?
Why is c still so popular?
What is typeof in c?
When should I declare a function?
How to declare pointer variables?
what is meant by the "equivalence of pointers and arrays" in C?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
Explain how do you sort filenames in a directory?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is the difference between %d and %*d in C
Explain the concept and use of type void.