This shows you the differences between two versions of the page.
programare:laboratoare:lab11 [2017/12/09 02:11] george.pirtoaca [Exercitii laborator CB/CD] |
programare:laboratoare:lab11 [2022/12/12 17:12] (current) robert.stoica2205 [Noţiuni teoretice] |
||
---|---|---|---|
Line 1: | Line 1: | ||
===== Structuri. Uniuni. Aplicaţie: Matrice rare ===== | ===== Structuri. Uniuni. Aplicaţie: Matrice rare ===== | ||
- | **Responsabil:** | + | **Resposabili:****Responsabili:** |
- | * [[ion_dorinel.filip@cti.pub.ro|Dorinel Filip]] (2016) | + | * [[ion_dorinel.filip@cti.pub.ro|Dorinel Filip (CA 2016-2020)]] |
+ | * [[neatudarius@gmail.com|Darius Neațu (CA 2019-2020)]] | ||
* [[mihaela.vasile@gmail.com|Mihaela Vasile]] | * [[mihaela.vasile@gmail.com|Mihaela Vasile]] | ||
Line 91: | Line 92: | ||
Accesul la membrii unei structuri se face prin operatorul ".": | Accesul la membrii unei structuri se face prin operatorul ".": | ||
<code c> | <code c> | ||
- | s1.nume = "Ionescu Raluca"; | + | s1.an = 3; |
</code> | </code> | ||
Line 187: | Line 188: | ||
struct exemplu *p2; | struct exemplu *p2; | ||
p1 = &s1; | p1 = &s1; | ||
- | p2 = &s2; | + | p2 = &s1; |
</code> | </code> | ||
Line 243: | Line 244: | ||
Address of Temperature = 165496 | Address of Temperature = 165496 | ||
Address of temp = 165496, feels_like = 165500 | Address of temp = 165496, feels_like = 165500 | ||
- | Wind_Chill = 165500, Heat_Index= 16550 | + | Wind_Chill = 165500, Heat_Index= 165500 |
</code> | </code> | ||
Line 256: | Line 257: | ||
**Următoarele două probleme vă vor fi date de asistent în cadrul laboratorului.** | **Următoarele două probleme vă vor fi date de asistent în cadrul laboratorului.** | ||
+ | |||
+ | [[ https://ocw.cs.pub.ro/courses/programare/checker | Tutorial folosire checker laborator ]] | ||
+ | |||
<hidden> | <hidden> | ||
Link direct către lista completă de probleme: [[https://docs.google.com/document/d/1Q374YAA_JopvxJNv-WG51xA6_bSDJSS3nha63XH1N4I/edit?usp=sharing|aici]] | Link direct către lista completă de probleme: [[https://docs.google.com/document/d/1Q374YAA_JopvxJNv-WG51xA6_bSDJSS3nha63XH1N4I/edit?usp=sharing|aici]] | ||
+ | |||
+ | Link catre teste: [[https://drive.google.com/drive/folders/12WvwMu7Do5QWlbjvnYrmbL_UWb73O-f3?usp=sharing|aici]] | ||
</hidden> | </hidden> | ||
Line 328: | Line 334: | ||
* [[http://crasseux.com/books/ctutorial//Data-structures.html#Data%20structures|The GNU Programming Tools - Data structure]] | * [[http://crasseux.com/books/ctutorial//Data-structures.html#Data%20structures|The GNU Programming Tools - Data structure]] | ||
* [[http://publications.gbdirect.co.uk/c_book/chapter6/unions.html|The C Book - Unions]] | * [[http://publications.gbdirect.co.uk/c_book/chapter6/unions.html|The C Book - Unions]] | ||
- |