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
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How arrays can be passed to a user defined function
What is d scanf?
What are identifiers c?
What is the value of uninitialized variable in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What are the types of pointers in c?
What is console in c language?
Where are local variables stored in c?
What is anagram in c?
Why does not c have an exponentiation operator?
What is define directive?
How can you convert integers to binary or hexadecimal?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.