کامپیوتری ها – Telegram
کامپیوتری ها
3.44K subscribers
4.41K photos
496 videos
476 files
467 links
Download Telegram
0⃣1⃣ C++ Dynamic Memory

#include <iostream>
using namespace std;

int main ()
{
double* pvalue = NULL; // Pointer initialized with null
pvalue = new double; // Request memory for the variable

*pvalue = 29494.99; // Store value at allocated address
cout « "Value of pvalue : " « *pvalue « endl;

delete pvalue; // free up the memory.

return 0;
}

1⃣0⃣ @computeriha
0⃣1⃣ کتاب یادگیری ماشین تام میشل

#ارشد #دکتری

🌍 دانلود مستقیم 👇👇👇


1⃣0⃣ @computeriha
This media is not supported in your browser
VIEW IN TELEGRAM
0⃣1⃣ تقلید هوش مصنوعی از نوع راه رفتن انسان

📌 این ربات برای راه رفتن، ابتدا پاشنه پا را بر زمین می‌گذارد و با انگشتان پا، خود را به جلو می‌راند. / خبرفوری

1⃣0⃣ @computeriha
This media is not supported in your browser
VIEW IN TELEGRAM
✳️ تست جالب از قرار دادن آیفون 6 اس و گلکسی اس 7 در آب جوش


🆔 @ITfarsi
1⃣0⃣ آخرین ورژن اینستاگرام

🌍 دانلود مستقیم:

0⃣1⃣ @computeriha
#وب
#web #html #css #javanoscript #php #mysql

The Web Book
How to create web sites and applications with HTML, CSS, Javanoscript, PHP and MySQL.

#Schifreen

@computeriha
1⃣0⃣ آموزش جاوا
#java3

🌎 دانلود مستقیم
1⃣0⃣ @computeriha
👇👇👇
#آیتیطنز #گوگل

اگه گوگل ایرانی بود، بالاش مینوشتن "هرچیز که در جستن آنی، آنی".

× ѕαєє∂ мoѕℓємι ×


🆔 @computeriha
✳️ آموزش قدم به قدم برنامه نویسی وب با PHP (جلسه هجدهم: #php18)

🌎 دانلود مستقیم

🆔 @computeriha
👇👇👇
1⃣0⃣ Dynamic Memory Allocation for Objects

#include <iostream>
using namespace std;

class Box
{
public:
Box() {
cout « "Constructor called!" «endl;
}
~Box() {
cout « "Destructor called!" «endl;
}
};

int main( )
{
Box* myBoxArray = new Box[4];

delete [] myBoxArray; // Delete array

return 0;
}

—------------------------—
compile and run:

Constructor called!
Constructor called!
Constructor called!
Constructor called!
Destructor called!
Destructor called!
Destructor called!
Destructor called!

0⃣1⃣ @computeriha
0⃣1⃣ کتاب

Think Python

🌍 دانلود مستقیم 👇👇👇

1⃣0⃣ @computeriha
0⃣1⃣ برنامه نويسي سطح پايين (Low-level) روح برنامه نويس‌ها را جلا مي‌بخشد

(John Carmack)


1⃣0⃣ @computeriha
1⃣0⃣ آموزش جاوا
#java4

🌎 دانلود مستقیم
1⃣0⃣ @computeriha
👇👇👇