1.what is the difference b/w pointer and pointer++2.what is difference b/w pointer &array3.what is the difference b/w class& structure
Latest Answer: 3. structures and classes both are used in c++ but classes are private by default and structures are public by default. structures are also used in c but not classes. ...
x=8x-=--x-x--;printf("%d",x);that time the output of this is 6. but my things this output is 9. so please give me descriptionof this output(6).
Latest Answer: YES OFCOURSE....#include #include int main(){ int myVar; float fVal = 5.5; float *pFloat; pFloat = &fVal; ...
Latest Answer: data structures are structures used for implementing different data in a program.examples are 1)tree2)queue3)list4)heap ...
I did not attempted the C paper but still I just had a look on C and java paper. in C most of the question were programs and their out was asked in LINUX environment.1)
Latest Answer: for 2nd question, o/p - helloworldhelloworld. ( this is the case on linux)because, execution of first printf statment stores in buffer. fork , forks helloworld. thats why, its print 2 times helloworld.In case if u placed ...