What is a 'null pointer assignment' error?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is data structure in c language?

0 Answers  


How to write a multi-statement macro?

0 Answers  


How can I read and write comma-delimited text?

0 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

1 Answers  


What are the types of c language?

0 Answers  


Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147

2 Answers  


write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?

3 Answers   Oracle,


write a program to display the array elements in reverse order in c language

16 Answers  


What is #pragma statements?

0 Answers  


Why is c fast?

0 Answers  


What does static mean in c?

1 Answers  


Why do we use int main instead of void main in c?

0 Answers  


Categories