Explain how are 16- and 32-bit numbers stored?
No Answer is Posted For this Question
Be the First to Post Answer
What are comments and how do you insert it in a C program?
why do some people write if(0 == x) instead of if(x == 0)?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
What is the purpose of 'register' keyword?
find the sum of two matrices and WAP for it.
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
what is the diffrenet bettwen HTTP and internet protocol
What's the difference between a linked list and an array?
What is an lvalue in c?