What oops means?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of a conditional inclusion statement in C?
What is bubble sort technique in c?
Explain following declaration int *P(void); and int (*p)(char *a);
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
Explain what is the difference between a free-standing and a hosted environment?
What is the difference between arrays and pointers?
is it possible to create your own header files?
Explain the use of function toupper() with and example code?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
how to find the largest element of array without using relational operater?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is an volatile variable?