This media is not supported in your browser
VIEW IN TELEGRAM
Coding is not only codes also about thinking and growing with errors..
π©βπ» π¨βπ» βοΈ βοΈ βοΈ βοΈ βοΈ βοΈ βοΈ βοΈ π¨βπ» π¨βπ» π¨βπ» π¨βπ» π βοΈ VSC: I miss youπ₯Ί
π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ»
Please open Telegram to view this post
VIEW IN TELEGRAM
FY student π π
π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ»
Please open Telegram to view this post
VIEW IN TELEGRAM
I miss this daysπ₯Ί
π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ»
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
Is this enough for not 18 years of yet girl ?
π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ»
Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
@school21uz was unforgetablle 4us by the way In these videos I'm not a videograph I'm girl that who wearing on green blouse and yellow scirtπ
π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ» π©βπ»
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
int main() {
int myAge = 25;
int votingAge = 18;
if (myAge >= votingAge) {
printf("Old enough to vote!");
} else {
printf("Not old enough to vote.");
}
return 0;
}int myAge = 25;
int* ptr = &myAge;
printf("Qiymat: %d\n", myAge); // 25
printf("Manzil: %p\n", &myAge); // 0x... (xotira manzili)
printf("Pointer ichidagi qiymat: %p\n", ptr); // ptr oβzida myAge'ning manzilini saqlaydi
printf("Pointer orqali oβqilgan qiymat: %d\n", *ptr); // 25 β ptr orqali qiymatga kiriladi