what is a NULL pointer?

Answer Posted / ganesh

null pointer is a pointer. it will retrns no value that is
call null pointer

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.

1731


Explain bit masking in c?

642


Why c is called a mid level programming language?

610


What are derived data types in c?

620


A set of N billiard balls are set on a one-dimensional table. The table is 1 meter long, set north-south with two pockets at either side. Each ball has zero width and there is no friction so it is moving with a fixed velocity of either northward or southward and bounces back in a perfect elastic collision from other balls it encounter on its way (or drop into one of the pockets). Your job is to keep track of the balls movements. Task Please write a program that gets the initial place, speed and direction of all the balls and gives the position of a specific ball after t seconds. Input The first line contains the number of scenarios. Each one of the other lines in the input contains a scenario: The first number, N, is the number of balls; followed by N pairs of numbers: the distance in centimeters from the south end of the table and the speed (positive speed meaning it moves northward); the last two numbers are the number i of the target ball you should track and the time T in seconds. Output The output is a single number for each line which is the place (distance in centimeters from the south end of the table) of the tracked ball after T seconds. Note: There is no new line character at the end of the result. Sample Input 5 1 50 1 1 1000 1 50 1 1 6 1 60 -2 1 6 2 10 1 95 -1 2 30 2 10 1 95 -1 2 60 Sample Output 100 56 48 65 70

2139






Why main function is special give two reasons?

957


Write program to remove duplicate in an array?

604


What is #pragma statements?

595


How can I read a binary data file properly?

639


An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

665


Is it possible to initialize a variable at the time it was declared?

765


Do you know the purpose of 'register' keyword?

650


What are local variables c?

556


What is the use of getchar() function?

634


Write a program which returns the first non repetitive character in the string?

610