15,550 Topics

Member Avatar for
Member Avatar for Somali Rathore

A string is input which is both in uppercase & lowercase letters. How can I arrange the string so that all lowercase letters are in one side and uppercase letters are in another side.

Member Avatar for Aia
0
192
Member Avatar for Somali Rathore
Member Avatar for Narue
-2
202
Member Avatar for ahspats

I'd like to implement a sorting algorithm(quicksort or bubblesort or mergesort... it doesn't matter. anything that sorts is ok) into my insert function, so that everytime i create a new element it'll be inserted into right position. The variable listptr is the pointer pointing to the address of the first …

Member Avatar for Luckychap
0
137
Member Avatar for titosd

hello, I have a matrix (string array that have words) and I want to write a function that receive the word and consider whether the word existed or not in the matrix I"m trying to write the function, but i didn't succeeded. this is my code [code] int CheckWord (char …

Member Avatar for Aia
0
142
Member Avatar for scru

Is there a function in the Windows API I can use to get recent files opened by my application instead of just setting them? (Before you tell me; yes, I know it won't be hard to do myself.)

Member Avatar for Ancient Dragon
0
178
Member Avatar for supremesoul

hi guys! How can I play mp3 / wav file using C language........ please help. Thanx in Adv.

Member Avatar for scru
0
98
Member Avatar for Slobodin

Hi, I'm trying to write a program to archive, basicaly concatenate some files from a folder. The names of the files are obtained from the file_ls file which contains the result you get when you run ls -la in linux. It's lines of text like this: [CODE]drwxr----- 13 slobo slobo …

Member Avatar for Ancient Dragon
0
97
Member Avatar for keyser_soze

i have been using CreatProcess in my program to initialize another program with two command line arguments as C:\\Documents and Settings\\xyz.exe and 2 so the code i am using is [code=c] CreateProcess ( "C:\\abc.exe", " C:\\Documents and Settings\\xyz.exe 2", NULL, NULL, FALSE, NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi ); [/code] but …

Member Avatar for Salem
0
113
Member Avatar for kracekumar

Write a C program to create a hierarchy of processes as shown in figure. Parent Child1 Child 2 Child3 Child4 First child process should display the information regarding users (users login, how many users etc). Second child should display system characteristics (the CPU characteristics, other system properties, memory, OS name, …

Member Avatar for sillyboy
0
95
Member Avatar for Somali Rathore

IThanks for previous help. I know the process of finding H.C.F. of two numbers. But how to calculate H.C.F & L.C.M. of a series of numbers? Please reply.

Member Avatar for Salem
0
204
Member Avatar for zailani

Hi, I'm new here, I need help in assisting me to get rough idea on how the process of: "Writing C code of Motion Detection then plug-in it onto IP camera". Tq

0
33
Member Avatar for ahspats

have a very simple question: how can i write something into a .txt file? could write only few lines of code and got stuck. have no idea what to do next. can someone help? [CODE] #include <stdio.h> int main(){ FILE *textfile; textfile = fopen("test.txt", "w"); return 0; } [/CODE]

Member Avatar for ahspats
0
92
Member Avatar for Mehh

Hello all, im Mehh and this is my first post. Im also a rookie in programming and im making Multi Document Interface program from a MDI Example in DevC++. My problem is that i cannot change Font Size in MDI example and its so small that my friends cant even …

Member Avatar for Mehh
0
183
Member Avatar for nikil@

Hiii... I have got to do a project on thread shceduler...as the name says its purpose is to schedule various threads... i have to do it in c or c++ as i don't know java... I am very much new to this....I have searched in books and surfed in net …

0
37
Member Avatar for igok

hello, i'm trying to write a function in C that finds two subsequences that thier sum is equal. hope you can help me. thank you!

Member Avatar for igok
0
119
Member Avatar for al3x748769

hey, i made this a few years ago. i want to take the error when u enter a different number and would like to make it more compact. can you guys help me make it smaller. this is a 8 bit binary to decimal converter. [code=c] #include <stdio.h> #include <string.h> …

Member Avatar for Murtan
-1
120
Member Avatar for jmoo5

Have to write a program that mimikes a grep. It has to search thru a given file for a certain pattern. I have no idea where to start. Help please.

Member Avatar for Salem
0
86
Member Avatar for abhi_marichi

I want to know how can we interface compilers so that we can mix up many languages together but still the code should work. One of my thoughts is, if there is any code in C allthose codes must be taken apart and must be compiled by C compiler and …

Member Avatar for death_oclock
0
137
Member Avatar for titosd

Hello, I have a question, How I can write a function that return 2 values. the function should take 3 numbers and do between the first and the second number an arethmetic operation and check if the result will be the third number, if yes the function return 1 and …

Member Avatar for death_oclock
0
166
Member Avatar for rahulnitk2004

Hi, i am working on scheduling of threds...i am having a thread library different from pthreads. I wanted to switch b/w the threads. Its possible for me to switch, if thread finishes its execution, using signals...but when a thread doing its execution (for example if thred contains an infinite loop), …

0
45
Member Avatar for skynwa

Hi! I am trying to make a function, which transposes matrix. When declaring it, i get this error, which i mention in the title. I`ve tried to find the solution myself, but i am quite new to C, so i don`t even understand what does this error mean. (I know …

Member Avatar for Patel S
0
257
Member Avatar for RenFromPenn

I'm creating a program that is supposed to have enumerated constants that contain days of the week. I am also supposed to have a variable called today that is of type week. Okay, I think I have done all of that correctly. Now I am supposed to assign a value …

Member Avatar for Alibeg
0
131
Member Avatar for nvnq

:idea: Anyone have C source code program to change the system time in Linux ? Please share me!!! Thank!

Member Avatar for nvnq
0
71
Member Avatar for ravikiran032

If we consider a pointer variable if takes size of 2 bytes and it can carry max address value of 65535 but actual address are larger than 65535 , how it is able to manage these address..... will u please explain me.

Member Avatar for Alibeg
0
87
Member Avatar for abhi_marichi

[code]I have used outportn(base,pin); cmd with header file dos.h and as per my knowledge there are no errors in the program. BUT ITS NOT WORKING for crazy it worked ones in my friends computer and never worked again ... What should I do ??Please help me I use XP. [/code]

Member Avatar for abhi_marichi
0
146
Member Avatar for Lokolo

[code] FILE *infile; infile = fopen("coords1.txt", "r"); int num = 0; for(int num1 = 0; num1 < 5; num1++) { for(int num2 = 0; num2 < 4; num2++) { for(int num3 = 0; num3 < 3; num3++) { fscanf(infile, "%f", &num ); targetCoords[num1][num2][num3] = num; } } } [/code] I'm …

Member Avatar for Lokolo
0
209
Member Avatar for Whilliam

Hello, Im trying to insert some integers to make a sorted list. I am using cursor-based. Here is the function: [CODE=c] void insert_sorted(virtualheap *vh, list *l, int x) { int temp, *p; if(vh->avail != -1) { temp = mymalloc(&(*vh)); vh->h[temp].elem = x; for(p = l; *p != -1 && vh->h[*p].elem …

Member Avatar for Whilliam
0
111
Member Avatar for uxp

I would like to say thank you to all the contributing members of the forum. Daniweb has been the result of many late night google searches and has provided some valuable knowledge to myself and I'm sure countless others. I'll start by saying I'm no _real_ programmer. I've played around …

Member Avatar for uxp
0
137
Member Avatar for prashanth s j

Hi any one please tell me why the warning is generated when the address of pointer to a local variable is passed. [U]The following is the warning generated:[/U] Icore.c:228: warning: passing argument 3 of foo from incompatible pointer type [U]The function declaration is:[/U] int foo(void * , int , void**); …

Member Avatar for grumpier
0
143
Member Avatar for taichou

please help me with this SUPPLY IT! Your program will have a 3x3 array. The user will input the sum of each row and each column. Then the user will input 3 values and store them anywhere, or any location or index, temporarily in the array. Your program will supply …

Member Avatar for Murtan
0
89

The End.