'func': identifier not found [on hold]What are the rules about using an underscore in a C++ identifier?How do I iterate over the words of a string?The Definitive C++ Book Guide and ListWhat is the difference between const int*, const int * const, and int const *?C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Why are elementwise additions much faster in separate loops than in a combined loop?Writing to output window of Visual Studio?Image Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionError message “No exports were found that match the constraint contract name”Compiling an application for use in highly radioactive environments

What to do when eye contact makes your coworker uncomfortable?

US tourist/student visa

PTIJ: Why is Haman obsessed with Bose?

How does electrical safety system work on ISS?

Is there any evidence that Cleopatra and Caesarion considered fleeing to India to escape the Romans?

What is Cash Advance APR?

Stack Interview Code methods made from class Node and Smart Pointers

Permission on Database

How can ping know if my host is down

Can I say "fingers" when referring to toes?

Do we have to expect a queue for the shuttle from Watford Junction to Harry Potter Studio?

Is it necessary to use pronouns with the verb "essere"?

Will number of steps recorded on FitBit/any fitness tracker add up distance in PokemonGo?

Is it allowed to activate the ability of multiple planeswalkers in a single turn?

"It doesn't matter" or "it won't matter"?

Taxes on Dividends in a Roth IRA

How could a planet have erratic days?

Find the next value of this number series

Does "he squandered his car on drink" sound natural?

Can you use Vicious Mockery to win an argument or gain favours?

C++ copy constructor called at return

How do I tell my boss that I'm quitting soon, especially given that a colleague just left this week

How much theory knowledge is actually used while playing?

Does the Linux kernel need a file system to run?



'func': identifier not found [on hold]


What are the rules about using an underscore in a C++ identifier?How do I iterate over the words of a string?The Definitive C++ Book Guide and ListWhat is the difference between const int*, const int * const, and int const *?C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Why are elementwise additions much faster in separate loops than in a combined loop?Writing to output window of Visual Studio?Image Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionError message “No exports were found that match the constraint contract name”Compiling an application for use in highly radioactive environments













-1















function identifier not found. Please who can fix this error?



defined function



function recall in int main










share|improve this question















put on hold as off-topic by Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit 8 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit
If this question can be reworded to fit the rules in the help center, please edit the question.











  • 4





    Please post a Minimal, Complete, and Verifiable example with text, not with pictures or links to pictures.

    – molbdnilo
    12 hours ago
















-1















function identifier not found. Please who can fix this error?



defined function



function recall in int main










share|improve this question















put on hold as off-topic by Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit 8 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit
If this question can be reworded to fit the rules in the help center, please edit the question.











  • 4





    Please post a Minimal, Complete, and Verifiable example with text, not with pictures or links to pictures.

    – molbdnilo
    12 hours ago














-1












-1








-1








function identifier not found. Please who can fix this error?



defined function



function recall in int main










share|improve this question
















function identifier not found. Please who can fix this error?



defined function



function recall in int main







c++ visual-studio visual-c++






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 12 hours ago









Blastfurnace

14k54259




14k54259










asked 12 hours ago









Nilupul UdarakaNilupul Udaraka

33




33




put on hold as off-topic by Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit 8 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit
If this question can be reworded to fit the rules in the help center, please edit the question.







put on hold as off-topic by Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit 8 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – Blastfurnace, Mike Kinghan, Michael Veksler, StoryTeller, Lightness Races in Orbit
If this question can be reworded to fit the rules in the help center, please edit the question.







  • 4





    Please post a Minimal, Complete, and Verifiable example with text, not with pictures or links to pictures.

    – molbdnilo
    12 hours ago













  • 4





    Please post a Minimal, Complete, and Verifiable example with text, not with pictures or links to pictures.

    – molbdnilo
    12 hours ago








4




4





Please post a Minimal, Complete, and Verifiable example with text, not with pictures or links to pictures.

– molbdnilo
12 hours ago






Please post a Minimal, Complete, and Verifiable example with text, not with pictures or links to pictures.

– molbdnilo
12 hours ago













2 Answers
2






active

oldest

votes


















0














In case you don't want to move the entire function (for organization purposes), you could also declare a prototype before main() like this:



void func();


A prototype only defines what comes in (the arguments, in this case none) and what goes out (void), you basically promise the compiler that the function body (what the function actually does) will be defined later in the code.






share|improve this answer








New contributor




Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago


















0














If the images you posted are from the same file:



Main is defined around line 100, func() is defined on line 163. This means that when the compiler compiles main, it doesn't yet know about func. Try moving func() such that it is defined before main().






share|improve this answer























  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago

















2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














In case you don't want to move the entire function (for organization purposes), you could also declare a prototype before main() like this:



void func();


A prototype only defines what comes in (the arguments, in this case none) and what goes out (void), you basically promise the compiler that the function body (what the function actually does) will be defined later in the code.






share|improve this answer








New contributor




Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago















0














In case you don't want to move the entire function (for organization purposes), you could also declare a prototype before main() like this:



void func();


A prototype only defines what comes in (the arguments, in this case none) and what goes out (void), you basically promise the compiler that the function body (what the function actually does) will be defined later in the code.






share|improve this answer








New contributor




Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago













0












0








0







In case you don't want to move the entire function (for organization purposes), you could also declare a prototype before main() like this:



void func();


A prototype only defines what comes in (the arguments, in this case none) and what goes out (void), you basically promise the compiler that the function body (what the function actually does) will be defined later in the code.






share|improve this answer








New contributor




Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










In case you don't want to move the entire function (for organization purposes), you could also declare a prototype before main() like this:



void func();


A prototype only defines what comes in (the arguments, in this case none) and what goes out (void), you basically promise the compiler that the function body (what the function actually does) will be defined later in the code.







share|improve this answer








New contributor




Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this answer



share|improve this answer






New contributor




Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









answered 12 hours ago









ScamtexScamtex

1314




1314




New contributor




Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Scamtex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago

















  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago
















its worked.. thanks a lot

– Nilupul Udaraka
10 hours ago





its worked.. thanks a lot

– Nilupul Udaraka
10 hours ago













0














If the images you posted are from the same file:



Main is defined around line 100, func() is defined on line 163. This means that when the compiler compiles main, it doesn't yet know about func. Try moving func() such that it is defined before main().






share|improve this answer























  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago















0














If the images you posted are from the same file:



Main is defined around line 100, func() is defined on line 163. This means that when the compiler compiles main, it doesn't yet know about func. Try moving func() such that it is defined before main().






share|improve this answer























  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago













0












0








0







If the images you posted are from the same file:



Main is defined around line 100, func() is defined on line 163. This means that when the compiler compiles main, it doesn't yet know about func. Try moving func() such that it is defined before main().






share|improve this answer













If the images you posted are from the same file:



Main is defined around line 100, func() is defined on line 163. This means that when the compiler compiles main, it doesn't yet know about func. Try moving func() such that it is defined before main().







share|improve this answer












share|improve this answer



share|improve this answer










answered 12 hours ago









SilverTearSilverTear

166313




166313












  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago

















  • its worked.. thanks a lot

    – Nilupul Udaraka
    10 hours ago
















its worked.. thanks a lot

– Nilupul Udaraka
10 hours ago





its worked.. thanks a lot

– Nilupul Udaraka
10 hours ago



Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript