Guys, how are you? hope allright. Hey I need some pretty good examples of nested loops in C language. Different kind of examples. Please post some, I'd appreciate it.
Peace,
The Freebuddy
I want an explanation:
what does following statement means? and what is the use of assert()?
assert(c -> e == 1);
HI, I'M USING BLOODSHED COMPILER BUT WHEN I EXECUTE MY C PROGRAMS, I CAN`T SEE THE OUTPUT EVEN IF I USE GETCH(). ANOTHER PROBLEM IS THAT WHAT CAN I USE INSTEAD OS CLRSCR().
THANKS FOR YOUR ...
Anyone know of a site that has just about every single ASM opcode and a good description of it? Thanks.
I try to use Microsoft Internet Transfer Control (Inet, as COM component) in my VC application program, but have difficulty to get OpenURL method right. In the wrapping class CInet, this metho...
Hi All,
This question of mine concerns C programming on Solaris 5.7.
I have used the fork() system call i.e. pid = fork(). Then for pid = 0 I have used execvp(......) to execute an executabl...
hey everybody,
i'm trying to create a scaled down version of tar for linux os.
I am running into trouble when I am trying to use the stat function to get information about a current file in ...
Urgent!!!Can someone please help me to this assignment.I'm a beginner.
this program should read the input data from "inputdata.txt" and create a linked list first then sort the linked lists...
how to write a dynamic 2 and 3 dimensional array
I want to get system date and time and store them in to mysql data base. how to convert system date and time into string or other data type.
I have a command line program that processes some data. How do i show the percentage of the processed data at the same spot. I am doing a printf() but obviously it prints it one after the othe...
Experts,
I have some C/C++ pseudo code that I need to translate into an executable function.
For me (beginner), the code actually already looks like an executable function? If not, wha...
Hello,
I have a batch job that I am writing that is scheduled to be run every Tuesday throughout the year.
I have a huge file that I am ftp'ing to another machine but I am dividing it up...
how to detect loop in a linked list?
I am trying to do a homework problem using the program below. When I compile and run it with the a.out command I get two numbers, 0 and #####. My questions are why are two numbers printed with...
In a 'C' program, if I write a line something like as follows:
system ("echo password | gpg --no-tty -q --passphrase-fd 0 -d add2numbers.sh.asc | bash -s 3 4");
where I am decrypting an ...
Hi experts,
I modify the webserver sample in gSOAP sample directory and compile it with gcc compiler. It is successful. But now I use cross-compiler mipsel-uclibc-gcc to compile the webserver...
Hi Experts,
We often need to communicate with each other for collaborative efforts and getting some matters to the attention of fellow experts. This thread is for fulfilling these objective...
Suppose you store a 64-bit value in memory, at an address that is not divisible by 8, but is divisible by 4.
For example:
char buf[100];
uint64_t num = BIGNUMBER;
memcpy(buf + 4, &num,...
i have created a directed graph (Adjacency list) application. The nodes & arcs are in their correct place. I desperately need help with implementing the depth first search traversal.
i fou...
Good Evening. I am very new to writing code, and I am taking a C programming class. I wrote the following program and it will not compile for me. I unsure on what may be the problem. I think i...
hi experts,
please help me to fix this problem. i will be really thankful to you.
Every time when I write some program using functions i got this error message."function 'XXX' should have...
Guys, I was only able to get my "Commify" function to work on 1 column at a time, thus only 1 column in the print statement could be "commify'd". Admit that i am lost with this one as i ne...
Does anyone have the program which implements the best first search algorithm to search the nodes of a tree.....
and some nodes are common to others meaning two parents may have the same child...
I'm trying to create a function that will compute the standard devation of a list of numbers, based on the following formula:
stddev= sqrt(((Sum of values)^2-(1/n)*(Sum of values)^2)/(n-1)
...