What is wrong with this program statement? void = 10;


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

Post New Answer

More C Interview Questions

How can you determine the maximum value that a numeric variable can hold?

0 Answers  


Explain what is the advantage of a random access file?

0 Answers  


Can math operations be performed on a void pointer?

0 Answers  


What is a list in c?

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  






#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.

0 Answers  


Why is c known as a mother language?

0 Answers  


print the palindrome numbers in between 0 to n

1 Answers  


What is substring in c?

0 Answers  


What is the purpose of & in scanf?

0 Answers  


array of pointer pointer to array pointer to pointer

1 Answers   MAHINDRA,


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

0 Answers  


Categories