Explain low-order bytes.
No Answer is Posted For this Question
Be the First to Post Answer
What is c method?
How does pointer work in c?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
How would you rename a function in C?
how to write a prog in c to convert decimal number into binary by using recursen function,
how to find out the reverse number of a digit if it is input through the keyboard?
What is the purpose of the fflush() function in C?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
void main() { int a=1; while(a++<=1) while(a++<=2); }
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Explain in detail how strset (string handling function works )pls explain it with an example.