I have a function which accepts, and is supposed to
initialize,a pointer, but the pointer in the caller remains
unchanged.
Answer / guest
The called function probably altered only the passed copy of
the pointer.
| Is This Answer Correct ? | 2 Yes | 0 No |
Can the size of an array be declared at runtime?
Magic square
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
What is difference between Structure and Unions?
Explain about block scope in c?
What are qualifiers and modifiers c?
What is the size of structure in c?
If the size of int data type is two bytes, what is the range of signed int data type?
Difference between strcpy() and memcpy() function?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }