[c++] What is an 'undeclared identifier' error and how do I fix it?

They most often come from forgetting to include the header file that contains the function declaration, for example, this program will give an 'undeclared identifier' error:

Missing header

int main() {
    std::cout << "Hello world!" << std::endl;
    return 0;
}

To fix it, we must include the header:

#include <iostream>
int main() {
    std::cout << "Hello world!" << std::endl;
    return 0;
}

If you wrote the header and included it correctly, the header may contain the wrong include guard.

To read more, see http://msdn.microsoft.com/en-us/library/aa229215(v=vs.60).aspx.

Misspelled variable

Another common source of beginner's error occur when you misspelled a variable:

int main() {
    int aComplicatedName;
    AComplicatedName = 1;  /* mind the uppercase A */
    return 0;
}

Incorrect scope

For example, this code would give an error, because you need to use std::string:

#include <string>

int main() {
    std::string s1 = "Hello"; // Correct.
    string s2 = "world"; // WRONG - would give error.
}

Use before declaration

void f() { g(); }
void g() { }

g has not been declared before its first use. To fix it, either move the definition of g before f:

void g() { }
void f() { g(); }

Or add a declaration of g before f:

void g(); // declaration
void f() { g(); }
void g() { } // definition

stdafx.h not on top (VS-specific)

This is Visual Studio-specific. In VS, you need to add #include "stdafx.h" before any code. Code before it is ignored by the compiler, so if you have this:

#include <iostream>
#include "stdafx.h"

The #include <iostream> would be ignored. You need to move it below:

#include "stdafx.h"
#include <iostream>

Feel free to edit this answer.

Examples related to c++

β€’ Method Call Chaining; returning a pointer vs a reference? β€’ How can I tell if an algorithm is efficient? β€’ Difference between opening a file in binary vs text β€’ How can compare-and-swap be used for a wait-free mutual exclusion for any shared data structure? β€’ Install Qt on Ubuntu β€’ #include errors detected in vscode β€’ Cannot open include file: 'stdio.h' - Visual Studio Community 2017 - C++ Error β€’ How to fix the error "Windows SDK version 8.1" was not found? β€’ Visual Studio 2017 errors on standard headers β€’ How do I check if a Key is pressed on C++

Examples related to compiler-errors

β€’ intellij idea - Error: java: invalid source release 1.9 β€’ Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug' β€’ Deserialize JSON with Jackson into Polymorphic Types - A Complete Example is giving me a compile error β€’ Android java.exe finished with non-zero exit value 1 β€’ error: expected primary-expression before ')' token (C) β€’ What does "collect2: error: ld returned 1 exit status" mean? β€’ Python3: ImportError: No module named '_ctypes' when using Value from module multiprocessing β€’ Maven error :Perhaps you are running on a JRE rather than a JDK? β€’ What does a "Cannot find symbol" or "Cannot resolve symbol" error mean? β€’ Operator overloading ==, !=, Equals

Examples related to declaration

β€’ Component is part of the declaration of 2 modules β€’ What is the 'open' keyword in Swift? β€’ What’s the difference between β€œ{}” and β€œ[]” while declaring a JavaScript array? β€’ Getting error: ISO C++ forbids declaration of with no type β€’ What is an 'undeclared identifier' error and how do I fix it? β€’ Difference between int32, int, int32_t, int8 and int8_t β€’ forward declaration of a struct in C? β€’ How to initialize a vector in C++ β€’ Declare variable in SQLite and use it β€’ Initializing multiple variables to the same value in Java

Examples related to undeclared-identifier

β€’ What is an 'undeclared identifier' error and how do I fix it?