אשכול: שאלה בCPP
View Single Post
ישן 30-12-05, 15:03   # 1
בניה
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נחושה
הודעות: 3,434

בניה לא מחובר  

שאלה בCPP

בס"ד


זו התוכנית:
קוד:
#include <iostream.h>
main()
{
int x=15;
int *point;
point=&x;
cout<<*point;
return 0;
}
וזו השגיאת קימפול שאני מקבל:
קוד:
#ifndef _BACKWARD_BACKWARD_WARNING_H
#define _BACKWARD_BACKWARD_WARNING_H 1

#ifdef __DEPRECATED
#warning This file includes at least one deprecated or antiquated header. \
Please consider using one of the 32 headers found in section 17.4.1.2 of the \
C++ standard. Examples include substituting the <X> header for the <X.h> \
header for C++ includes, or <iostream> instead of the deprecated header \
<iostream.h>. To disable this warning use -Wno-deprecated.
#endif

#endif
מישהוא יכול להגיד לי בבקשה מה השגיאה בתוכנית?
תודה...
  Reply With Quote