Robo CAD
Robo CAD
  • Видео 406
  • Просмотров 312 836
print "Hello World" in C | Programming in C
Getting started with C programming? In this C coding tutorial for beginners, we will write and understand the "Hello, World!" program-the first step in learning C coding basics.
What You'll Learn in This Video:
Understanding the stdio.h library and its purpose
What is int main(), and why is it needed?
The role of return 0 in C programming
How to use printf() to print text in the terminal
Writing comments in C for better code readability
This video is part of our C coding playlist, designed to help beginners get started with C programming. Whether you're looking for a C coding course or just want to learn coding, this tutorial is perfect for you.
Subscribe for more coding tutorials and start your...
Просмотров: 29

Видео

Coding Task: Print a Triangle in C | Programming in C
Просмотров 13014 часов назад
Want to learn coding and get started with C programming? In this C programming tutorial for beginners, we will write a simple C program to print a triangle in the terminal using escape sequences ( and \\). This tutorial is perfect for those who are new to C coding and want to practice C coding basics while improving their logic-building skills. What You'll Learn in This Video: How to print patt...
Understanding Pre-Increment, Post-Increment, and Logical Operators in C
Просмотров 46День назад
In this tutorial, we explore the concepts of pre-increment, post-increment, and pre-decrement, post-decrement operators in C programming. I explain how these operators work and show you how to write code using them. Additionally, we dive into logical operators, covering their concept and practical usage. Follow along with clear code examples to strengthen your understanding of these important C...
Compound Assignment Operators in C And Practical Code Example
Просмотров 12День назад
In this tutorial, we dive deep into Compound Assignment Operators in C programming. Learn how the value of a variable on the left side is updated after performing compound operations. I walk you through a practical code example, explaining each step to help you master these operators. Perfect for C programming beginners looking to enhance their understanding. Explore the complete playlist to le...
Coding Task: Print Triangle using 1 printf statement | Programming in C
Просмотров 2214 дней назад
This C coding tutorial is about how to print multiple lines in terminal using only one printf statement. i have explained this by printing a triangle using only one printf statement. Explore the complete playlist to learn Coding in C: ruclips.net/p/PL_gRt21XQOIk2xFW0FvfpxOfXJT1RLt2U&si=Ek8MW3n-UL-UxPYg #ccoding #coding #robocad #programming
if...else if Statement in C | Programming in C
Просмотров 2214 дней назад
The if...else if...else if structure in C is used to evaluate multiple conditions sequentially. It checks each if or else if condition in order, and when one is true, the corresponding block of code is executed, and the rest are skipped. This is helpful for handling situations where multiple exclusive conditions need to be tested. If none of the conditions are true, an optional else block can p...
else statement in C | Programming in C
Просмотров 514 дней назад
This C coding tutorial is about else statement. The else statement in C is used to specify a block of code to execute when the condition in the preceding if statement is false. It acts as a fallback option, ensuring that an alternative action is performed if the if condition is not met. This enhances the program's decision-making ability by covering both outcomes. Explore the complete playlist ...
If Statement in C | Programming in C
Просмотров 714 дней назад
This C Coding tutorial is about if Statement. The if statement in C is used for decision-making in a program. It evaluates a condition, and if the condition is true (non-zero), it executes the block of code inside the statement. If the condition is false (zero), the code block is skipped. This allows programs to perform different actions based on varying conditions. Explore the complete playlis...
Lab 3: Floating-Point Values in C | Programming in C
Просмотров 2121 день назад
This C programming tutorial focuses on working with floating-point values in your code. You'll learn how to handle decimal point numbers effectively, use the appropriate format specifier for the float data type, and take user input for floating-point values. Additionally, we’ll explore practical tasks and exercises in Lab 3, designed to enhance your understanding of the float data type. Explore...
Lab 2: Basic Concepts in C | Programming in C
Просмотров 1221 день назад
This C tutorial i an introduction to Lab which in which we will explore followings: Variable and naming rules of variable in C. Data types in C what is Integer Data type How to take user input for integer data type Format Specifier for Integer data type. Explore the complete playlist to learn Coding in C: ruclips.net/p/PL_gRt21XQOIk2xFW0FvfpxOfXJT1RLt2U&si=Ek8MW3n-UL-UxPYg #ccoding #coding #rob...
Relational Operators in C | Programming in C
Просмотров 1421 день назад
in this tutorial, we dive into Relational Operators in C, essential tools for building logic-based code. You'll learn how these operators compare values and how they play a key role in controlling program flow, particularly when used with if-else statements. By the end of this video, you'll have a clear understanding of how to implement relational operators effectively in your C programming pro...
Introduction To C Programming Lab 1 | Programming in C
Просмотров 2021 день назад
This is an introductory tutorial on C programming Lab 1. In this tutorial, basic concepts of Lab 1 on C coding is explained. this tutorial covers the followings: stdio library, printf, int main (main function), comments and applications of C How to Download and install VS Code and GCC compiler: ruclips.net/video/AMmHRLskB6U/видео.html Explore the complete playlist to learn Coding in C: ruclips....
Temperature Conversion from C to F in C | Programming in C
Просмотров 2828 дней назад
This C tutorial is about how to write a C code in order to convert temperature from degree Celsius to degree Fahrenheit. Explore the complete playlist to learn Coding in C: ruclips.net/p/PL_gRt21XQOIk2xFW0FvfpxOfXJT1RLt2U&si=Ek8MW3n-UL-UxPYg #robocad #programming #ccoding #coding
Calculate Area of a Circle with C Coding | Programming in C
Просмотров 2028 дней назад
This C programming tutorial is about how to calculate the area of circle when the radius of the circle is given. Explore the complete playlist to learn Coding in C: ruclips.net/p/PL_gRt21XQOIk2xFW0FvfpxOfXJT1RLt2U&si=Ek8MW3n-UL-UxPYg #robocad #programming #ccoding #coding
User input for Float Data Type | Programming in C
Просмотров 728 дней назад
This Tutorial is about how to take the user input when the data type is Float. Explore the complete playlist to learn Coding in C: ruclips.net/p/PL_gRt21XQOIk2xFW0FvfpxOfXJT1RLt2U&si=Ek8MW3n-UL-UxPYg #robocad #programming #ccoding #coding
BMI calculator in C | Float Data | Programming in C
Просмотров 2828 дней назад
BMI calculator in C | Float Data | Programming in C
Arithmatic Operators in C | Programming in C
Просмотров 1428 дней назад
Arithmatic Operators in C | Programming in C
Write Code to Solve Equations in C | Programming in C
Просмотров 50Месяц назад
Write Code to Solve Equations in C | Programming in C
Mini Calculator with User input in C | Programming in C | Robo CAD
Просмотров 25Месяц назад
Mini Calculator with User input in C | Programming in C | Robo CAD
Mini Calculator in C | Programming in C | Robo CAD
Просмотров 31Месяц назад
Mini Calculator in C | Programming in C | Robo CAD
How to Take User input in C | Programming in C
Просмотров 24Месяц назад
How to Take User input in C | Programming in C
Defining Variables & Using Format Specifier in C | Robo CAD Coding
Просмотров 20Месяц назад
Defining Variables & Using Format Specifier in C | Robo CAD Coding
Coding Task: Print a Triangle | C Programming Tutorial
Просмотров 15Месяц назад
Coding Task: Print a Triangle | C Programming Tutorial
Escape Sequence in C Programming \\n | Robo CAD
Просмотров 20Месяц назад
Escape Sequence in C Programming \ | Robo CAD
Coding Task: Print Hello World | Programming in C
Просмотров 19Месяц назад
Coding Task: Print Hello World | Programming in C
How to Install VS Code and GCC Compiler for C Programming | Robo CAD
Просмотров 101Месяц назад
How to Install VS Code and GCC Compiler for C Programming | Robo CAD
Engine Motion Study and Exploded View and Animation in SOLIDWORKS
Просмотров 60Месяц назад
Engine Motion Study and Exploded View and Animation in SOLIDWORKS
Engine in SOLIDWORKS | Robo CAD
Просмотров 90Месяц назад
Engine in SOLIDWORKS | Robo CAD
Piston Ring and Shaft for Engine in SOLIDWORKS | Robo CAD
Просмотров 39Месяц назад
Piston Ring and Shaft for Engine in SOLIDWORKS | Robo CAD
Engine Assembly in SOLIDWORKS | Robo CAD
Просмотров 163Месяц назад
Engine Assembly in SOLIDWORKS | Robo CAD

Комментарии

  • @MeTechSoGood
    @MeTechSoGood 5 дней назад

    Thank you for making this video, very helpful!

  • @danialhaider6159
    @danialhaider6159 10 дней назад

    Good

  • @pradhanronit4725
    @pradhanronit4725 14 дней назад

    How to get the Solidworks software in laptops

    • @CAD5-Minute
      @CAD5-Minute 14 дней назад

      @@pradhanronit4725 there are many tutorials available on RUclips for download and installation.

  • @KabilaKannan-h7e
    @KabilaKannan-h7e 15 дней назад

    Nige

  • @rokiamakled6074
    @rokiamakled6074 17 дней назад

    thanks a lot... i watched all playlist and i could appliyed the Robotic aem successfully... Please Continue🤩

    • @CAD5-Minute
      @CAD5-Minute 17 дней назад

      @@rokiamakled6074 Thankyou

  • @slawomirbartoszewicz2847
    @slawomirbartoszewicz2847 19 дней назад

    Very nice.Are there any housings for these bearings available in solidworks?

  • @midhunamasco
    @midhunamasco 20 дней назад

    SOLIDWORKS IS USELESS WHEN IT COMES TO ACTUAL USED CASE SCENARIOS

    • @CAD5-Minute
      @CAD5-Minute 20 дней назад

      @@midhunamasco i know what you are saying as i had experience in fabrication. for me, it is very useful though.

    • @midhunamasco
      @midhunamasco 19 дней назад

      @@CAD5-Minute can you develop a rectangle circle transistion OD-400mm, Rectangle- 700x500 & height- 120mm.Can't seem to develop it correctly, I dont understand where Im making the mistake.

  • @bpetnoi1472
    @bpetnoi1472 20 дней назад

    Sir I would have approached this differently to save time. First I would have created the outer race as you did. I would then do a save as and name it inner race. I would then edit the elements in the new file by taking the race elements and flipping them and make a few changes to the offset. This would allow you to create both the outer and inner race much faster. If you didn't want to use the same as command I would just start a new part and copy all the elements from the outer race file and flip them also saving you time. Just my 2 cents on how to do this faster. Also as you know the hardest part of a ball bearing to drawing is the ball retainer to keep the balls evenly spaced. I noticed that you did not include a retainer.

    • @CAD5-Minute
      @CAD5-Minute 20 дней назад

      @@bpetnoi1472 yes correct. the purpose of this tutorial is just to show the modeling technique. it's not just a retainer that is missing but there are many calculations while we design the bearing are not there. Talking about the modeling approch to design inner/outer race. yes you are correct we can save our time. But also if you are that great in modeling with saving time efficiency and mofeling in faster way etc... than you should not be having any problem with modeling the retainer for it. i am surprised you written that.

  • @AK-fn2in
    @AK-fn2in 21 день назад

    10:22 I having a issue with specifying the distance between central line an the line we drawn after determining there angle(which is 30) I am unable to change the dimention

    • @CAD5-Minute
      @CAD5-Minute 21 день назад

      @@AK-fn2in probably the reason of why you can't change the dimension is that there the line is fully defined (indication: color of the line turns into black). the easy solution is that remove that delete only that line and redraw it again. if the issue is not resolved then let me know.

    • @AK-fn2in
      @AK-fn2in 19 дней назад

      @@CAD5-Minute Thanks for your response but i resolve it by myself . i just have to of the drive

    • @CAD5-Minute
      @CAD5-Minute 19 дней назад

      @AK-fn2in that's great.

  • @AJAYKUMAR-j3d7n
    @AJAYKUMAR-j3d7n 24 дня назад

    Nice..

  • @RakshaDevaraju
    @RakshaDevaraju Месяц назад

    Which app you are using is that solidedge

    • @CAD5-Minute
      @CAD5-Minute Месяц назад

      @RakshaDevaraju yes. i used solidworks

  • @TheSanAnt0ni0
    @TheSanAnt0ni0 Месяц назад

    Thank you, your tutorial was really helpful ! Love from France to Pakistan ! Keep doing your great work !

    • @CAD5-Minute
      @CAD5-Minute Месяц назад

      @@TheSanAnt0ni0 Thank you.

  • @cadcaetutorial2039
    @cadcaetutorial2039 Месяц назад

    So weldon sir

  • @cadcaetutorial2039
    @cadcaetutorial2039 Месяц назад

    So Perfect sir

  • @davidmika7049
    @davidmika7049 Месяц назад

    Nice, but the bottom of your keyway follows the contour of the outer surface. It is not flat. You should construct a plane tangent to the shaft and reference it instead for this purpose.

  • @habtubeyene6371
    @habtubeyene6371 Месяц назад

    how the motors are integrated with the links

    • @CAD5-Minute
      @CAD5-Minute Месяц назад

      @@habtubeyene6371 Motors can be attached if we make modifications in this model. This is just a conceptual design.

  • @chuzagamer6160
    @chuzagamer6160 Месяц назад

    can it be 3d Printed

    • @CAD5-Minute
      @CAD5-Minute Месяц назад

      @@chuzagamer6160 Yes, this wheel can be 3d printed. The purpose of this video is to show the modeling technique without being focused on 3D printablity.

  • @Rann1990
    @Rann1990 Месяц назад

    Where is the drawing plan, it is better to make it easier to learn to read engineering drawings

    • @CAD5-Minute
      @CAD5-Minute Месяц назад

      @@Rann1990 No, i have not added drawings.

  • @KhalidGill-h3v
    @KhalidGill-h3v 2 месяца назад

    What's the diameter of the circle 😊

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      @@KhalidGill-h3v Which diameter? and is it not defined in the tutorial?

  • @АлексейЮжаков-л8ш
    @АлексейЮжаков-л8ш 2 месяца назад

    Thank you! Great lesson!

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      @@АлексейЮжаков-л8ш Welcome

  • @АлексейЮжаков-л8ш
    @АлексейЮжаков-л8ш 2 месяца назад

    Thank you! Great lesson!

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      @@АлексейЮжаков-л8ш Welcome

  • @mouradamr2307
    @mouradamr2307 2 месяца назад

    you didn't explain how did you get the 120 & 240 !!!!!!

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      Thank you for your comment! All the measurements used in this video were taken from a solved example. The purpose of the video is to demonstrate how to model helical gears when all the necessary calculations are already available. The values 120 and 240 are likely the pitch circle diameters. This video is specifically focused on the modeling process, not on performing the calculations.

  • @vsavenkys4553
    @vsavenkys4553 2 месяца назад

    Thanks bro

  • @nadamostafa523
    @nadamostafa523 2 месяца назад

    Is this four bar mechanism?

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      @@nadamostafa523 No. this is a robotic arm

  • @SITARAMCHANDRADHARA
    @SITARAMCHANDRADHARA 2 месяца назад

    sir, can you make full fledged bike gear box system in solidworks. pls help me sir

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      @@SITARAMCHANDRADHARA Search on RUclips or GrabCAD. i hope you can easily find that gearbox system. making that system require a lot much time and unfortunately i am very busy these days.

  • @COpyCaT-StuDIo-k1h
    @COpyCaT-StuDIo-k1h 2 месяца назад

    Hi , this was an awesome tutorial but i wanted to know how to did you calculated the the dimension , i mean did you take it form somewhere or did you calculated them by yourself , because i wanted to make my own robotic arm so just asking about ,it would be great help in it

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      @@COpyCaT-StuDIo-k1h i took the dimensions from somewhere.

  • @Averageperson770
    @Averageperson770 2 месяца назад

    Thanks alot

    • @CAD5-Minute
      @CAD5-Minute 2 месяца назад

      @@Averageperson770Welcome

  • @sath7760
    @sath7760 3 месяца назад

    Very clear explanation and informative!!! Thank you so much

    • @CAD5-Minute
      @CAD5-Minute 3 месяца назад

      @@sath7760 Thank you so much

  • @oliullaholiverynice4571
    @oliullaholiverynice4571 3 месяца назад

    thank you sir

    • @CAD5-Minute
      @CAD5-Minute 3 месяца назад

      @@oliullaholiverynice4571 Wel come

  • @buddhaabuser
    @buddhaabuser 3 месяца назад

    thank you sir

    • @CAD5-Minute
      @CAD5-Minute 3 месяца назад

      @@buddhaabuser wel come

  • @jonsnow3513
    @jonsnow3513 5 месяцев назад

    thank you sir

  • @rockbreacker9305
    @rockbreacker9305 5 месяцев назад

    🔥♥♥

  • @mariasabir7181
    @mariasabir7181 5 месяцев назад

    Very informative and nice video

    • @CAD5-Minute
      @CAD5-Minute 5 месяцев назад

      Thank You So much Aunty Riffat.

  • @wilsonlopez4147
    @wilsonlopez4147 5 месяцев назад

    Very well explained ❤

    • @CAD5-Minute
      @CAD5-Minute 5 месяцев назад

      @@wilsonlopez4147 Thanks

  • @ansarnaseer4
    @ansarnaseer4 5 месяцев назад

    All video was good but you make thread command more complex we can easily make by thread command instead of doing all these stuff

    • @CAD5-Minute
      @CAD5-Minute 5 месяцев назад

      @@ansarnaseer4 Yes you are right. I have explained other commands in other tutorials as well. The only benifit of using this command is that we can create custom threads that are not available in solidworks thread options. Other than that, we can use the easy way for threading. But Yes, you are correct 100% and your feedback is valuable. Thanks

  • @barashbehched9868
    @barashbehched9868 6 месяцев назад

    Can I put reducer between those bearings

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      @@barashbehched9868 are you talking about Gear reducers? if yes, then for modeling point of view it is possible with modifications.

    • @barashbehched9868
      @barashbehched9868 5 месяцев назад

      Just one gear reducer and the shaft is the shaft of the wheel.

    • @CAD5-Minute
      @CAD5-Minute 5 месяцев назад

      @@barashbehched9868 yes

  • @iSanjaySolanki
    @iSanjaySolanki 6 месяцев назад

    Please also make a video on how to export the BOM to Excel.

  • @iSanjaySolanki
    @iSanjaySolanki 6 месяцев назад

    Very nice. Quick and precise. Thanks.

  • @wilsonlopez4147
    @wilsonlopez4147 6 месяцев назад

    Superb 👍

  • @hassangamal8205
    @hassangamal8205 6 месяцев назад

    thank you for your information You have all the appreciation and respect for your effort

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      @@hassangamal8205 Thank you so much. ✨✨

  • @moodboard.digital
    @moodboard.digital 6 месяцев назад

    the video, it's super explanatory, but I have no experience with Solid Works and it was hard for me to follow it, but what I need is very simple for someone with your experience: I have an idea but I need to generate the plan of an inclined cone. Can you help me?

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      @@moodboard.digital okay. how i can help you then?

  • @moodboard.digital
    @moodboard.digital 6 месяцев назад

    Hi! im new in Solid works, i need to draw a cone and convert in a plane (like your video) can you help me with that? How much cost, Thanks again, great video!

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      Yeah you can do it. i can explain to you and there is no cost. is it hard for you to follow the steps in this video? or what exactly is the problem?

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      i believe every step required to make a cone in solidworks is explained in this video.

  • @LO-FIworld07
    @LO-FIworld07 6 месяцев назад

    Great work 🫡

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      @@LO-FIworld07 Thank you

  • @k.dhivakar5238
    @k.dhivakar5238 6 месяцев назад

    Nice 🎉

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      @@k.dhivakar5238 Thanks

  • @alucard9627
    @alucard9627 6 месяцев назад

    obrigado

  • @LO-FIworld07
    @LO-FIworld07 6 месяцев назад

    Very useful video i daily watch and practice thank you 👍🏻

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      @@LO-FIworld07 That's Great to hear. Thank you so much.

  • @cadcaetutorial2039
    @cadcaetutorial2039 6 месяцев назад

    Amazing sir

    • @CAD5-Minute
      @CAD5-Minute 6 месяцев назад

      @@cadcaetutorial2039 Thanks

  • @cadcaetutorial2039
    @cadcaetutorial2039 6 месяцев назад

    This lecture is very weldon sir

  • @nelsonvelasquez6384
    @nelsonvelasquez6384 7 месяцев назад

    Que calidoso bemdiciones

    • @CAD5-Minute
      @CAD5-Minute 7 месяцев назад

      Thank you for your kind words. Blessings to you too.

  • @aynulhossain7663
    @aynulhossain7663 7 месяцев назад

    🇧🇩

    • @CAD5-Minute
      @CAD5-Minute 7 месяцев назад

      @@aynulhossain7663 ❤️