Good morning,
I'm trying to create a library to generate excel files (.xls) in C, but I have no idea how to get sheets, here's the code:
#ifndef SACAEXCEL_H_
#define SACAEXCEL_H_
//cada celda ira separada por una '\t' de la siguiente y por...
I have a local variable in my function main . Can data of that variable be passed to any function?
For example, move from main to function x , the value of variable k
The program should read an array from the keyboard but pull this error
error: expected expression before 'array'
#include <stdio.h>
#define TAM 3
typedef int matriz[TAM][TAM];
int main()
{
int i, j;
for(i=0; i<TAM; i++...
The program has to read and display data from a structure,
the program does not throw error but in the exit it appears the name after garbage (spaces without assigning) and the last name when it is shown How can this be solved?
#include <st...
When I try to install the program (./Rack.sh), I get this error:
./Rack: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version
'GLIBCXX_3.4.21' not found (required by ./Rack)
./Rack: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version
'GLIBCXX_3.4...
#include <stdio.h>
int main(){
int primerNumero;
int segundoNumero;
int tercerNumero;
/*Cuando intento ingresar por ejemplo el valor del primer numero por teclado con scanf, luego me tira error si intento--> segundoNumero = 0primerNu...
I am doing a basic program in C, to calculate notes.
It consists of an array in which some notes read by keyboard are stored. Once they are introduced, they are added one by one and stored in a variable.
The problem is that it does not add th...
Good! I'm starting to program in pseudocodigo similar to C and they gave me an exercise that is really costing me a lot ...
The slogan is:
Invert an array of 30 integers entered by keyboard (I can not use sorting methods such as bubbler, for exa...
Some time ago I used linked lists in C, but using the Windows operating system and the IDE Visual Studio, I am currently using Linux (Ubuntu), and I realize that the GCC compiler does not allow me to do the things like I did in windows.
I hav...