Most voted "linkage" questions
10 questions
Sort by count of
-
7
votes1
answer3111
viewsWhat good is an Inker?
Some languages use a Linker or likeditor as it is also called. What is its function and its relation to the compiler? Why some languages do not have a Linker?…
-
4
votes1
answer169
viewsWhat’s the difference between a Windows compiler and Linux executable
When compiling a simple program for Linux, the compiler generates an executable that only works on Linux, but when compiling the same code with a compiler for Windows it generates an executable that…
-
3
votes1
answer80
viewsQuestions about "linkage"
I tried to pass to IDE a code I found in a book and some doubts arose. Code: newApplication.cpp #include "stdafx.h" #include <iostream> using std::cout; using std::endl; #include "GradeBook.h"…
-
2
votes1
answer1686
viewsUncaught Syntaxerror: Unexpected token Nodejs
I cannot properly link my Static/index files, follow the code directory: 'blog/createServer.js' var http = require('http'); var fs = require('fs'); var path = require('path'); var contentTypes = {…
-
2
votes1
answer3724
viewsHow to link files in different folders?
I’m having difficulty making a link between two HTML pages, the hierarchy of the folder is this: I want to link the file: J: Totem_app XPLACES acess cid_vitoria 1_acru.html that has a button in your…
-
2
votes1
answer35
viewsWhat is the difference between build and link?
I’ve seen some representations where the build is in the same place as when linkage, both are the same thing?
-
1
votes0
answers53
viewsDoubt about building and linking libraries (C++)
I am using the Codeblocks IDE and would like to use the functions of an external library called Chilkat in my code. I can make the IDE read the header, but when I try to use some function or object…
-
0
votes2
answers91
viewsProject linkage problem with more than one source file
This is to my function. It gives me error when calling in main function. This is the header of my function, in the function file1.h int eleminar_numeros_repetidos(int *vec, int n, int *vec1); File…
-
0
votes0
answers59
viewsHow to use composite links - '.html file#secao'?
I made the following button: <a href="/../totem_app/xplaces/00_menu_vitoria_xingu.html#acru" target="_parent" class="bcontraste"><b>LINK</b></a> to go to <a…
-
0
votes1
answer93
viewsHow to create link inside combo box?
I have the following code that generates me a combo box state and city. How do I when clicking on the city redirect me to the city’s page for example that city? Thank you <script…