Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 5
c x 1

4 Posted Topics

Member Avatar for sambafriends

or use %x to view the address of i and j in hex values... If u r a real embedded engineer u wil love to see hex values of address ....(because tat is most understandable......)

Member Avatar for awi123
0
116
Member Avatar for blcase

[code=c++] #include<iostream> #include<string> using namespace std; class Movie { private: string director,title,genre; public: Movie() { director=""; title=""; genre=""; cout<<"in constructor\n"; } }; int main() { Movie a; return 0; } [/code] This works fine but ..... Movie a(); not works... This is becoz like int xyz(); and int xyz; both …

Member Avatar for Narue
0
2K
Member Avatar for rkavinash

See i have a program in c or c++.. this program has many functions like add(), mul(), div(), sub() etc.... now i want to call a function such that in main there should be only one call for that particular funtion that i have to be called... ie in runtime …

Member Avatar for Salem
0
118
Member Avatar for vanalex

The End.