What is this pointer in c plus plus?
No Answer is Posted For this Question
Be the First to Post Answer
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
what are the different storage classes in c?
What is difference between union and structure in c?
what is computer
Can a function argument have default value?
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
what is pointer ? what is the use of pointer?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }