What is meant by high-order and low-order bytes?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
What are actual arguments?
What are header files and what are its uses in C programming?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Give basis knowledge of web designing ...
What is a const pointer, and how does it differ from a pointer to a const?
List the difference between a "copy constructor" and a "assignment operator"?
write a program for the normal snake games find in most of the mobiles.
What is a stream water?
Explain what is a pragma?