Rompecabezas de llamadas a funciones AC/C++
Considere el siguiente programa. Predecir el resultado cuando se compile con compiladores C y C++. C #include<stdio.h> void func() { /* definition */ } int main() { func(); func(2); } C++ #include <iostream> using namespace std; void func() { /* definition */ } int main() { func(); func(2); return 0; … Continue reading «Rompecabezas de llamadas a funciones AC/C++»