Can we access array using pointer in c language?
How can I split up a string into whitespace-separated fields?
What is the meaning of int *x[]();?
Find greatest number out of 10 number without using loop.
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
what is difference between procedural language and functional language ?
How do you convert strings to numbers in C?
how to find out the reverse number of a digit if it is input through the keyboard?
How can I handle floating-point exceptions gracefully?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
Why can't I perform arithmetic on a void* pointer?