Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I have a file named "abc.mp4" its of 2 GB, i want a program that will conver it size to 6GB keeping the original video, Is there any method to do this like adding useless bytes at end of video?
try this
RandomAccessFile r = new RandomAccessFile(path, "rw");
r.setLength(6L * 1024 * 1024 * 1024);
r.close();
The Answer above is Good, But this Tool did my job very easily and perfectly!
https://sourceforge.net/projects/filesizefaker/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I have configured My putty to accept UTF-8 Character
I have set the linux environmental variable as UTF-8.
export LANG="en_GB.UTF-8"
How ever when I run my program, edit my use input the I have 2 press backspace key twice to delete the single character even though if the environmental values in active state.
Also I tried and I could not able to set the environmental value through my c code .
if (setlocale(LC_ALL, "en_US.UTF-8") == NULL) {
abort();
}
what I have to do to get this problem solved?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 5 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Improve this question
First time seeing this, what does this mean? Specifically the &a[i] part.
scanf("%d",&a[i])
This looks like C code that has been converted to HTML entities, so that it can be displayed on a web page. & is how you enter an & character in HTML. If you look at it in a web browser you'll see the intended C code, which is
scanf("%d",&a[i])
&a[i] means the address of the ith element of the array a. So this reads an integer from standard input, and stores it in a[i].
Don't try to read C from the HTML source code.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I opened a .xlsx file in open office calc (on my mac) and the data in most of the cells which has numbered list items, is repeated twice.
For example, if a particular cell has numbered list like:
1. something
2. something
3. something
Then this list will be repeated twice like this:
1. something
2. something
3. something
1. something
2. something
3. something
Any idea how to fix this?
This has been driving me crazy. I finally fixed it by saving the file as .xls (97-2004) format in excel prior to opening it in Open Office.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I have text document which contains more than 1000 pages. Can somebody help which file format(like doc, txt, .xml,etc), reduce the file size of that content(allocate small space for store the document)? Please help me..
Thanks in advance..
Store it as a compressed text file. Text lends itself wonderfully to compression.
Depending on your platform, a compressed file (.zip, .arj, .gz) or similar will give you the smallest space requirement possible. Is that what you're looking for, or does the document also have to be human readable at the same time?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I remember from some time ago reading about a commandline tool that explains C code, does anyone know what it might be named?
Perhaps you mean cdecl, a program that can translate complicated declarations to English and back?
e.g.
cdecl> explain int (*(*foo)(int ))(float )
declare foo as pointer to function (int) returning pointer to function (float) returning int
If you mean explaining then I think the answers already been given. If you mean looking for potential problems then there's lint and its variants, first stop in any code review.
http://en.wikipedia.org/wiki/Lint_programming_tool
Edit:
C/C++ Free alternative to Lint?
HTH