Latest Answer: I just want to make a small point.When you assign an array to a pointer, you can't put an & signint arr[5]={1,2,3},*p1;p1=arr;This will workint arr[5]={1,2,3},*p1; p1=&arr; error: cannot convert `int (*)[5]' to `int*' in assignmentThis ...
Is nesting of conditional operator( ? : ) possible? If no then why? If yes then write down the program to find the greatest of three number?
Yes, Nesting of conditional operator is possible .Write down the program yourself.
What will be the output of the code?#includemain(){int a=10;int b;b=a++ + 20;printf("a= %d b= %d", a, b);}
The o/p will be 11 30. Can somebody tell me how?
Latest Answer: Typedef is used to create a new name to an already existing data type. Redefine the name creates conflict with the previous declaration.eg:typedef unsigned int UINT32 Macros [#define] is a direct substitution of the text before compling ...
What is difference between && and & similarly || and | i.e., What is difference between logical AND and bit-wise AND?
Latest Answer: Indicate that a variable can be changed by a background routine. ...
Latest Answer: I don't understand whether the given number means an integer or a float number. However, we cannot find any complex number from the given number being a real number. It is possible to extract integers or even floating numbers from a given complex ...
Latest Answer: RAND: Rand uses a multiplicative congruential random number generator with period232 to return successive pseudo-random numbers in the range 0 to RAND_MAX.
Return Value: Rand returns the generated pseudo-random number.RANDOM(): Random returns a random ...
Latest Answer: That's true overloading in not possible in C.But in C++ function can be varied depending on its argument not on the return type.because, if there are two function with the same name having same argument list but with different kind of return type, ...
Latest Answer: Use Of Far Pointer..........Each program has its own data and code segments which is allocated by the compiler.The normal pointer or near pointer can address locations which are in its data segment. far pointer is used to address locations which ...
View page << Previous 4 5 6 7 [8] 9 10 11 12 13 Next >>

Go Top