Can you assign a different address to an array tag?
No Answer is Posted For this Question
Be the First to Post Answer
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
how to convert an char array to decimal array
actually i have 2 years teaching experience as computer faculty but now i am a DBA but when i go for interview many peoples asked me why i left my teaching profession and why i want to come in this field kindly give me the proper answer of this queston
Explain what header files do I need in order to define the standard library functions I use?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
How can I access memory located at a certain address?
Juxtapose the use of override with new. What is shadowing?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is the general form of function in c?
What is hashing in c language?