Programmierung: Unterschied zwischen den Versionen

Aus Wiki_2020
Wezi (Diskussion | Beiträge)
Wezi (Diskussion | Beiträge)
Zeile 72: Zeile 72:
# [https://www.logiqbit.com/arduino-pointers-how-to-use-pointers-in-your-sketches Arduino Pointers]
# [https://www.logiqbit.com/arduino-pointers-how-to-use-pointers-in-your-sketches Arduino Pointers]
# [https://www.programiz.com/c-programming/c-pointers Pointers]
# [https://www.programiz.com/c-programming/c-pointers Pointers]
#include <stdio.h>
#include <stdlib.h>
int main(void) {
  int x = 5; // Integervariable
  int *ptr ; // Pointer für Int variable
  ptr = &x;  // auf Adresse von x referenzieren
  printf("x ist %d \n",x);
  printf("Die Adresse von x ist %p \n",ptr);
  printf("Der Wert x ist %d \n",*ptr); 
  return EXIT_SUCCESS;
}
*'''Menu'''
*'''Menu'''
# [https://www.mikrocontroller.net/topic/104156 Menue C]
# [https://www.mikrocontroller.net/topic/104156 Menue C]

Version vom 1. März 2023, 21:04 Uhr

Git / Github

Python

Codeexamples

#An example of a class
class Shape:
   def __init__(self, x, y):
       self.x = x
       self.y = y
       self.description = "This shape has not been described yet"
       self.author = "Nobody has claimed to make this shape yet"
   def area(self):
       return self.x * self.y
   def perimeter(self):
       return 2 * self.x + 2 * self.y
   def describe(self, text):
       self.description = text
   def authorName(self, text):
       self.author = text
   def scaleSize(self, scale):
       self.x = self.x * scale
       self.y = self.y * scale
#create 3 objekts of shape        
    rectangle = Shape(100, 45)  
    long_rectangle = Shape(120,10)
    fat_rectangle = Shape(130,120)
#finding the area of your rectangle:
    print(rectangle.area())
#finding the perimeter of your rectangle:
    print(rectangle.perimeter())
#describing the rectangle
    rectangle.describe("A wide rectangle, more than twice\
    as wide as it is tall")
#making the rectangle 50% smaller
    rectangle.scaleSize(0.5)
#re-printing the new area of the rectangle
    print(rectangle.area())

tkinter

Diverse

C

  • Pointers
  1. Pointer 2 Structs
  2. Arduino Pointers
  3. Pointers
#include <stdio.h>
#include <stdlib.h>
int main(void) {
  int x = 5; // Integervariable
  int *ptr ; // Pointer für Int variable
  ptr = &x;  // auf Adresse von x referenzieren
  printf("x ist %d \n",x);
  printf("Die Adresse von x ist %p \n",ptr);
  printf("Der Wert x ist %d \n",*ptr);   
  return EXIT_SUCCESS;
}
  • Menu
  1. Menue C
  2. Embedded Menuesystem

MYSQL

Escape 
Sequence    Character Represented by Sequence
  \0         An ASCII NUL (0x00) character.
  \'         A single quote (“'”) character.
  \"         A double quote (“"”) character.
  \b         A backspace character.
  \n         A newline (linefeed) character.
  \r         A carriage return character.
  \t         A tab character.
  \Z         ASCII 26 (Control+Z).
  \\         A backslash (“\”) character.
  \%         A “%” character. 
  \_         A “_” character.