Tagged Questions
2
votes
5answers
126 views
Should Turbo C++ still be used for learning purposes?
I'm a young student trying to learn C and C++ to a more advanced level, and in my school, on every computer there are only 2 compilers: Mingw and Turbo C++, from which we only use Turbo C++
At home ...
2
votes
3answers
191 views
'??' is getting converted into '^' in Visual C++. Why is it happening and what is the way out?
'??' gets converted into '^' if I compile mn VC++ program and run it
e.g.
sprintf( ch, "??")
prints out
^
But if I run the same code in Turbo C/C++, there is no such problem. Why is it ...
2
votes
4answers
2k views
C Language - \n - creating virus
#include<stdio.h>
#include<conio.h>
union abc
{
int a;
int x;
float g;
};
struct pqr
{
int a;
int x;
float g;
} ;
void main()
{
union abc b;
struct pqr c;
...
1
vote
3answers
90 views
Why isn't this C program for calculating the area of a triangle working for all inputs?
The following is the source code of a program which calculates the area of a triangle when the sides are given.
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
...
1
vote
5answers
152 views
C programme memory violation
I have below programme where memory is read-only, but I am still able to write to it.
main()
{
char *p="amit";
p[0]="s";
printf("%s",p);
}
The output is "smit"
Is it the expected output since p ...
1
vote
2answers
177 views
C program gives an output different on different compiler
I ran a C program and got different output on different C compilers. Below is
my program
void main()
{
int i=5;
printf("%d%d%d%d%d",i++,i--,++i,--i,i);
}
ON boarnland c++ complier o/p is
...
1
vote
2answers
707 views
how to create a project in turbo c++ 16 bit compiler
I want to create a project file turbo c++ and link the files in this project. Although i have tried for it but i found only one option that to open a project no option to create a new project. So How ...
1
vote
5answers
665 views
Is it possible to generate a DLL using Turbo C/C++ compiler?
I need this for calling a C function from Java class (JNI) and I know that there are options to do this using "Microsoft Visual C++ compiler". (explained here)
But I am interested to know if ...
0
votes
0answers
143 views
Why it doesn't print correctly?
So I have this code using C and inline ASM, which is supposed to replace the original Timer Interrupt and use my own. After that it should manage 4 "proccess" which are just procedures that print ...
0
votes
5answers
546 views
0
votes
2answers
741 views
Steganography : Encoded audio and video file not being played, getting corrupted. What is the issue
I have made a steganography program to encrypt/Decrypt some text under image audio and video.
I used image as bmp(54 byte header) file, audio as wav(44 byte header) file and video as avi(56 byte ...
0
votes
4answers
261 views
long integer problem
I'm a beginner at C, and using Turbo C++ compiler (16 bit).
In the software I'm writing, the maximum answer is around 32000. If I want a number larger than that, I use long int.
If I execute the ...