C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Security
Remove
Platform
Any
License
Any
Hi,
I have to take 2 one hour sessions on the following topics:
* Project Design Review
* Project Risk Management
Can you please recommend any topics/examples/case studies for the same?...
The best I can recall, all of C's standard input functions are buffered, so they may return junk until the buffer is cleared. I'm also not sure if a char can be used for EOF... I *think* it has be...
I often rework programs from the forum to either help the original poster or learn a little more from some of the code (or both), but I have run across an unexpected result in a recent rework using...
The function pointers are also making code faster! For example, imagine that you are writing the disassembler. When disassembler reads a code stream - this stream follows byte-by-byte and the...
If you want to use the scanf return value then loop to enter few values will looke like this:
int flag=1, value;
while (flag == 1)
{
printf ("\nENTER VALUE: ");
// scan value into...
Numerical definition may be quite complex:
"6272"
"+6272"
"-6272"
"2.890"
".498232"
"2.4893e-78"
"2.4893E+78"
If you need to validate all of these cases - you need some work to do....
I am a toddler too and this is my task in the course-to use a loop. Like while(condition) -true-false.
Please tell me how to validate the input as numerical only. I need to use a loop to validate the input.
Thanks in advance!
Download Volumes 2A and 2B from here:
http://www.intel.com/products/processor/manuals/
All opcodes are inside, specifically read about how opcodes are formed (Mod/R/M and so on...)...
You just answered your own question. If applications could modify themselves in ROM while running, then that would be a major security flaw in itself. I'm sure there's a secure way to do whatever you...
Thank You! Obfuscation really obfuscates things doesn't it? ;)
How About
#include
#include
#include
using namespace std;
const double Emp_10plus = .12; //12% bonus for employees working more than 10 years
const double Emp_5to10 = .05; //5% bonus...
A lot of people use PHP for md5(), and when they use a C++ implementation it doesn't always return the same hash.
This implementation's hashes match that of php. I found the c++ md5 function...
I want to add a comment that the user can see on the screen when they go into the Restore submenu.
The message will be Warning user profile will be overwritten.
I underlined the comment in bold I...
This answers the question.
Most of the code i used is yours but changed a few bits. The W or D Needs validation to imrove quality and gain you marks but you can do that your self. Don't forget...
Hi ,
I am writing sample vss writer for my backup application in W2K3 with sp2.
I am facing a problem , that my Sample writer is not listed when i give call to vssadmin list writers.
Can anybody...
What i have to do actually is to "write a malware which injects malicious code into exe/com files) AUTOMATICALLY (e.g. not by using debuggers, hexeditors, etc). I have already written every part but...
: Is C a good language for server based web-apps?
Generally, no.
: Well, seriously, are there any drawbacks?
Security for one. You've got a whole load of data coming in from potentially...
: we are doing a project on fingerprint authentication and we need to find the fourier transform of the image. We need a C code for performing the same so as to burn our DSP processor. if any one...