To what value are pointers initialized?
1) NULL
2) Newly allocated memory
3) No action is taken by the compiler to initialize
pointers.
Answer Posted / shruti
Ponters are initialised to newly allocated memory locations.
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
What is infinite loop?
What is the use of in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is the difference between scanf and fscanf?
What does %c do in c?
What are the types of bitwise operator?
How can I remove the leading spaces from a string?
How many data structures are there in c?
Write a program to print all permutations of a given string.
Where local variables are stored in c?
What is the difference between functions abs() and fabs()?
Explain what does the function toupper() do?
What is the value of h?
Are the outer parentheses in return statements really optional?