Examen
COMP301 Exam Questions with 100% Correct Answers Graded to Pass
- Cours
- Établissement
what does a C hello world look like - #include <stdio.h> int main (int argc, char *argv[]) { printf("Hola Mundo!n"); return 0; } how is a string stored in c - char hello[6] = {'h', 'e', 'l', 'l', 'o', '0'}; what's a pointer? - A pointer stores the address of some data in ...
[Montrer plus]