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
Can two or more operators such as and be combined in a single line of program code?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
How can I get random integers in a certain range?
What is data structure in c and its types?
What are external variables in c?
praagnovation
What is sizeof return in c?
Why is c platform dependent?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Can variables be declared anywhere in c?
What are the types of data types and explain?
Explain how can I manipulate strings of multibyte characters?
How can I read/write structures from/to data files?
What is non linear data structure in c?