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
Ranked #72.8K
~4K People Reached
Favorite Forums
Favorite Tags
c++ x 1
c x 1

2 Posted Topics

Member Avatar for gcardonav

Actually, the header files only contain the declarations of the functions... for example.... the declaration of cout is in iostream as "extern ostream cout" but its only declaration and the compiler will not know where its actual definition lies(i.e how this function should work) and it is defined in a …

Member Avatar for StanleyLau
0
4K
Member Avatar for thechett22

#include<stdio.h> int main() { float price=56.95,tax=1.05; float total=0; printf("total=%f",price*tax); } the output will be total=59.797497

Member Avatar for munna.shk
0
103

The End.