what are two kinds of java
Answers were Sorted based on User's Feedback
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What is the scope of static variables in c language?
What is the difference between void main() and void main (void) give example programme?
An array name contains base address of the array. Can we change the base address of the array?
Write a program in c to replace any vowel in a string with z?
Is it possible to execute code even after the program exits the main() function?
What do header files do?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Can include files be nested? How many levels deep can include files be nested?
Explain the properties of union. What is the size of a union variable
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
write a program to display the array elements in reverse order in c language