thanks for your effort ❤ 1:48:07 - you can use this syntax (sizeof(quo) / sizeof(char)) to get the number of characters in the quo array instead of counting them.
yep thanks for this tip, but it's dealing with static number of characters you could make you code short by counting them and sure we will use this way on future videos all you have to get from this video how to deal with the gcc, and the whole process of how main.c works
hi , ho w can i solve this kind of error for question 6 [Got] Size of char: 1 byte(s) Size of an int: 4 byte(s) Size of long int: 4 byte(s) Size of long long int: 8 byte(s) size of a float: 4 byte(s) (139 chars long) [stderr]: (0 chars long) [Expected] Size of a char: 1 byte(s) Size of an int: 4 byte(s) Size of a long int: 4 byte(s) Size of a long long int: 8 byte(s) Size of a float: 4 byte(s) (144 chars long) [stderr]: [Anything] (0 chars long)
here is the code #include /** * main - Entry point * * Description: using sizeof to print the size of various types. * * Return: Always 0 (Success) */ int main(void) { printf("Size of a char: %u byte(s) ", sizeof(char)); printf("Size of an int: %u byte(s) ", sizeof(int)); printf("Size of a long int: %u byte(s) ", sizeof(long int)); printf("Size of a long long int: %u byte(s) ", sizeof(long long int)); printf("Size of a float: %u byte(s) ", sizeof(float)); return (0); }
hello project c-hello world task 6 i made the 6-size.c i've used chmod i did gcc 6-size.c ive tried gcc 6-size.c -m32 -o size32 2> /tmp/32 too but same problem please the deadline is very soon i habe the a.out file everything is good i've added commited and pushed to github but when i check the task i always ge check 4 and 3 wrong ive tried everyithing is there anything ive missed
here is the code #include /** * main - Entry point * * Description: using sizeof to print the size of various types. * * Return: Always 0 (Success) */ int main(void) { printf("Size of a char: %u byte(s) ", sizeof(char)); printf("Size of an int: %u byte(s) ", sizeof(int)); printf("Size of a long int: %u byte(s) ", sizeof(long int)); printf("Size of a long long int: %u byte(s) ", sizeof(long long int)); printf("Size of a float: %u byte(s) ", sizeof(float)); return (0); }
@@sadatmisr نفس حلك ال checker بيشوفه غلط مش عارف ليه لكن لما بعمل الحل من غير -o بيطلع صح عادى باعتباران ملف الخرج بيكون نفس الاسم لكن بامتداد مختلف لكن طريقتك ال checker شايفها غلط
انا مش عارفة اشكرك ازاي والله ❤
الشكر لله ربنا يوفقك
شرح رائع استمر
شكرا ليك❤❤❤
الشكر لله ♥
عاش اقسم بالله
تسلم يا اكرم والله
ربنا يبارك فيك
thanks for your effort ❤
1:48:07 - you can use this syntax (sizeof(quo) / sizeof(char)) to get the number of characters in the quo array instead of counting them.
yep thanks for this tip, but it's dealing with static number of characters you could make you code short by counting them
and sure we will use this way on future videos all you have to get from this video how to deal with the gcc, and the whole process of how main.c works
thanks a lot I faced some problems but I got it by your simple explanation
You are most welcome
شكرا جدا
العفو عبده
بالتوفيق
شغل عالي
بس عندي سؤال انت فاتح git bash بس الروت بتاعك على ايه لا مختلف عندي
ظاهر عندي ال root c folder بتاع ال pc
لازم تفتح ال git bash
علي الفولدر نفسه بتاع المشروع وهوا هيقرا الريبو بتاع الجت هب اوتوماتيك
سلام عليكم
عنندي تعقيب بسيط وهو ان حضرتك مش منظم الشرح في نقاط بتجي قبل نقاط المفروض تكون مشروحة الاول
بس مشكور علي الشرح واستمر
انا مرتب النقاط حسب ترتيب
alx
لذالك بحاول قدر الامكان اشرح اللي هما عاوزين يوصلوه لحضرتك
sudo command is not found, i ve been stuck in this error for hours, how did you manage to run this command in git bash??
there are 2 sandbox check the other one , it may works
عايز اسالك اخي هو انا اقدر اعتمد علي محتوي دا ولا دا مساعدة وبعدها ذاكر المصادر
حضرتك انت حسب ظروفك ووقتك تقدر تحكم في الامر ده لانه في الاول و الاخر يرجعلك
انا بشرح اللي هما طالبينه و بطبق عليه و بحل التاسكات في كل مره بأذن الله
لو عاوز أطبق عملى ممكن اعرف أنت بتستخدم إيه علشان اقدر أطبق عملى
تقدر تستخدم
online compiler => www.onlinegdb.com/online_c_compiler
او تنزل
codeblocks
hi , ho w can i solve this kind of error for question 6 [Got]
Size of char: 1 byte(s)
Size of an int: 4 byte(s)
Size of long int: 4 byte(s)
Size of long long int: 8 byte(s)
size of a float: 4 byte(s)
(139 chars long)
[stderr]:
(0 chars long)
[Expected]
Size of a char: 1 byte(s)
Size of an int: 4 byte(s)
Size of a long int: 4 byte(s)
Size of a long long int: 8 byte(s)
Size of a float: 4 byte(s)
(144 chars long)
[stderr]: [Anything]
(0 chars long)
you have many spaces in line 2
Size of an int: 4 byte(s)
it should be
Size of an int: 4 byte(s)
here is the code
#include
/**
* main - Entry point
*
* Description: using sizeof to print the size of various types.
*
* Return: Always 0 (Success)
*/
int main(void)
{
printf("Size of a char: %u byte(s)
", sizeof(char));
printf("Size of an int: %u byte(s)
", sizeof(int));
printf("Size of a long int: %u byte(s)
", sizeof(long int));
printf("Size of a long long int: %u byte(s)
", sizeof(long long int));
printf("Size of a float: %u byte(s)
", sizeof(float));
return (0);
}
Thank you so much
طب ال انت خدتو كوبي دا و عامل عليه blur اية دا
ده التوكين اللي ممكن تعمله بنفس الخطوات
السلام عليكم. كيف أحضر الملف بالأول حتى أشتغل عليه وأتبع الخطوات التي تتكلم عنها؟
حضرتك اول شي بتعمل فولدر و تبدا ملف
readme
و بعد كده بتعمل اول ملف
كل الخطوات موجوده في الفيديو و ممكن لو تدخل التيليجرام
@alx_2023
هقدر اساعدك اكتر
شكرا بجد كتر خيرك ❤❤
+
ممكن تنزل لينك السلايد الي بتشرح منو
بتنزل علي التيليجرام ممكن بس حضرتك تدخل الجروب هتلاقيها
@alx_2023
لو سمحت انا مشيت ع نفس الخطوات وكان بيطلعلي نفس النتائج ولكن عند الشيك اداني ان كله غلط
حضرتك ممكن تدخل جروب التيليجرام و تقول بس عندي مشكله في التاسك كذا و انا او من اللي موجودين مش هنتأخر
@alx_2023
بيطلعلى ايرور فى correct output
ممكن حضرتك تدخلي التيليجرام علي الجروب بنجاوب علي الأسأله و بنساعد اكتر
التاسك رقم 6 بيظهرلى الرسالة دى
Statement should start on a tabstop
ممكن تدخل جروب التيليجرام و تورينا اسكرين من المشكله و هتتحل بأذن الله
hello project c-hello world
task 6
i made the 6-size.c
i've used chmod
i did gcc 6-size.c
ive tried gcc 6-size.c -m32 -o size32 2> /tmp/32 too but same problem please the deadline is very soon
i habe the a.out file
everything is good
i've added commited and pushed to github
but when i check the task
i always ge check 4 and 3 wrong
ive tried everyithing
is there anything ive missed
here is the code
#include
/**
* main - Entry point
*
* Description: using sizeof to print the size of various types.
*
* Return: Always 0 (Success)
*/
int main(void)
{
printf("Size of a char: %u byte(s)
", sizeof(char));
printf("Size of an int: %u byte(s)
", sizeof(int));
printf("Size of a long int: %u byte(s)
", sizeof(long int));
printf("Size of a long long int: %u byte(s)
", sizeof(long long int));
printf("Size of a float: %u byte(s)
", sizeof(float));
return (0);
}
source files please
of which task!
1 compiler wrong
i didn't get that, kindly tell me more details about the compiler error you face
@@sadatmisr نفس حلك ال checker بيشوفه غلط مش عارف ليه
لكن لما بعمل الحل من غير -o بيطلع صح عادى باعتباران ملف الخرج بيكون نفس الاسم لكن بامتداد مختلف
لكن طريقتك ال checker شايفها غلط
@@sayedmohsen7714sn