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
Why is struct padding needed?
What's a good way to check for "close enough" floating-point equality?
What language is c written?
Is a house a mass structure?
Explain how do you determine a file’s attributes?
How can I read data from data files with particular formats?
How can you determine the size of an allocated portion of memory?
What is int main () in c?
How can you find the day of the week given the date?
What is function and its example?
What is %d used for?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What are logical errors and how does it differ from syntax errors?
Explain what math functions are available for integers? For floating point?
What is static and auto variables in c?