How can I manipulate individual bits?
No Answer is Posted For this Question
Be the First to Post Answer
how to build a exercise findig min number of e heap with list imlemented?
What is a pointer in c?
What does %c do in c?
What is the explanation for prototype function in c?
What does 3 mean in texting?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Prove or disprove P!=NP.
Do you know the difference between malloc() and calloc() function?
Why & is used in c?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }