Explain what does it mean when a pointer is used in an if statement?
No Answer is Posted For this Question
Be the First to Post Answer
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
what is the difference between 123 and 0123 in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What are bit fields? What is their use?
Can a variable be both static and volatile in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the importance of c in your views?
Write a program that can show the multiplication table.
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
#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
When can a far pointer be used?