FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
What’s Inside Your .o File? A Beginner-Friendly Guide to the Linux nm Command
How-ToSystems

What’s Inside Your .o File? A Beginner-Friendly Guide to the Linux nm Command

via Dev.tohassaan-syed1mo ago

What Is the nm Command? nm is a Linux command that shows the symbols from symbol table of an object file or executable. In simple words: nm tells you what functions and variables exist inside a compiled file. It is commonly used after compilation to inspect what got created inside the object file. nm file.o what is symbol ? A symbol is simply a name that represents something in your program.A symbol in C programming is simply the name of a function or global variable that the compiler records inside a compiled file so that the linker and other parts of the system can identify and connect different pieces of code together That “ something ” is usually: A function A global variable Symbol table | Symbol | Meaning | Simple Explanation | | ------ | ------------- | ----------------------------- | | T | Text (global) | Global function | | t | Text (local) | Static function | | D | Data (global) | Global initialized variable | | d | Data (local) | Static initialized variable | | B | BSS (glob

Continue reading on Dev.to

Opens in a new tab

Read Full Article
30 views

Related Articles

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 2d ago

Android Remote Compose:讓 Android UI 不用發版也能更新
How-To

Android Remote Compose:讓 Android UI 不用發版也能更新

Medium Programming • 2d ago

How-To

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

Lobsters • 2d ago

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 3d ago

How-To

How One File Makes Claude Code Actually Follow Your Instructions

Medium Programming • 3d ago

Discover More Articles