What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf("%d",x);
}
Answer Posted / 1160
[Error] invalid operands to binary * (have 'int' and 'void *')
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is printf () in c?
What is function definition in c?
What is getch() function?
Hai what is the different types of versions and their differences
What is build process in c?
Is it fine to write void main () or main () in c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Explain is it valid to address one element beyond the end of an array?
Is it better to use a macro or a function?
Why is %d used in c?
How can I make sure that my program is the only one accessing a file?
What is the right type to use for boolean values in c?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Explain how do you sort filenames in a directory?
What is the importance of c in your views?