8" :class="scrolled && 'is-scrolled'">
NOA
Labs
Tutorials
Courses
Skill Forge
Explore
Labs
Hands-on live sessions
Mentors
Meet the senior engineers
Projects
Real portfolio-ready builds
Talent Directory
Public student profiles
Mock Interview
Practice with real feedback
ATS Resume Checker
Free instant resume scoring
Search docs
Ctrl K
Login
Join Free
Artificial Intelligence
LangChain
LLMs
Machine Learning
Prompt Engineering
RAG (Retrieval-Augmented Generation)
AJAX
GraphQL
Apache Kafka
Microservices
Node.js
RabbitMQ
REST API
WebSockets
Algorithms
Data Structures
Angular
Bootstrap
CSS
HTML
jQuery
Next.js
Nuxt.js
React
Svelte
Tailwind CSS
Vue.js
ASP.NET Core
Django
.NET
Entity Framework Core
FastAPI
Flask
Gin
gRPC
Hibernate
Laravel
NestJS
Spring
Spring Boot
Spring Cloud
Spring Data JPA
Spring MVC
Spring Security
AWS
Azure
CI/CD
Docker
Git
Kubernetes
Linux
Nginx
Terraform
C
C++
C#
Dart
Go
Java
JavaScript
Kotlin
PHP
Python
Ruby
Rust
Swift
TypeScript
Database Design
MongoDB
MySQL
Oracle Database
PostgreSQL
Redis
SQL
System Design
↑↓ navigate
↵ open
esc close
Tutorials
/
C
C menu
C Tutorial
The foundational systems language — pointers, memory, and how computers really work.
Start the C tutorial →
What you'll learn
1. C Introduction
What C is, why it still matters for kernels and embedded systems, and compiling your first program with gcc.
2. C Syntax & Variables
Types, operators, control flow, functions, and the basics of header files in C.
3. Pointers & Arrays
Address-of and dereference, pointer arithmetic, array decay, and strings as char arrays, with a real swap example.
4. Memory Management in C
malloc, calloc, realloc, free, structs, function pointers, and avoiding a real use-after-free bug.
5. File I/O in C
fopen, fread, fwrite, fclose, reading a file line by line with fgets, and checking every error properly.
6. Multi-File Programs and the Build Process
Header files, include guards, compiling multiple .c files together, object files, and a minimal Makefile.
7. Debugging with gdb
Compiling with -g, breakpoints, stepping through code, printing and watching variables, and a real bug found live.
8. C Interview Questions
Commonly asked C interview questions on pointer arithmetic, malloc vs calloc, and struct padding.