📚
NoteHub
Home
School
College
About
Contact
Home
/
College
/
BCA
/
Semester 2
/
Programming in C
⌨️ Programming in C
1. Basics of C
#include
<stdio.h>
int
main() {
printf(
"Hello World\n"
);
return
0;
}
2. Pointers & Arrays
Memory allocation, pointer arithmetic, structures.
↑