- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 3
- Upvoting Members
- 7
- Downvotes Received
- 10
- Posts with Downvotes
- 5
- Downvoting Members
- 8
Student Of B.Tech
- Interests
- c programming , playing games on Lan , solving puzzles , Watching Action Movies
61 Posted Topics
| |
This is a simple archery Game developed in C language . The aim of the game is to shoot the balloons and score as much points as you can . The game have three levels. Platform used is Turbo C++ IDE . Standard Graphics.h functions are used. | |
Re: If you are using latest framework, why dont you just use async-await. It is simple and easy to use. http://msdn.microsoft.com/en-us/library/hh191443.aspx | |
| |
This program just demonstrate how a node can be added,deleted,searched,counted,and printed using Singly Linked List. An easy code to understand :)[code]////////////////////////////////////////////////////////////// ////////// -: Singly Link list :- ///////// //////////////////////////////////////////////////////////// /* reference : Understandng pointer though c - Y karnetkar. */ ////////////////////////////////////////////////////////// ////////// Programmer : Harsh chandra /////////// //////////////////////////////////////////////////////// # include<stdio.h> … | |
Re: There is no choice to increase the size of the array .....instead u can take use of calloc or malloc function to allocate the memory space dynamically .... or in these case the best would be to use a Linked list for storing the numbers.....by doing this u can take … | |
Re: this can happen only when u had used if statement along with two else which leads to an error......however due to braces u will not get any syntax error but only the logical error is the possiblity | |
This code calculates and the average waiting time of the process given acc to their burst time..It is a famous scheduling algorithm for process scheduling in operating sysytem . After calculating waiting time it also generates the gantt chart for the process given . | |
This program maintains a employee's record using Doubly linked list.It was a weekly project submission by me for the course CI 031 .Invloves simple graphics and a login menu where i had used file handling to maintain a record of 3 user's name and their password .So before running the … | |
Re: U can define a function called as " convert " th prototype will look like this : int convert( char) for(i=0;i<MAX;i++) number = convert(a[i]); int convert(char c) { return c - '0' ; } | |
This program generates different combinations of a number or a string as given by the user.just a simple implementation of arrays. | |
Re: hey just take a look over this link [url]http://www.daniweb.com/code/snippet93.html[/url] ...this however change changes the binary code to gray but in middle of the code u will find the binary equivalent code also. Cheers, Harsh | |
This program takes two decimal number from the user and a operator for addition or substraction.it displays the binary equivalent of both number and also the added or substracted binary number . | |
The famous Tower Of Hanoi with graphics and animations. | |
Re: [B]hi there....ur program is working fine | |
It's a simple program .Just enter any date in dd/mm/yyyy format.If you enter wrong you will get the message . | |
This program finds the solution of system of simulataneous equation Using GAUSS SEIDEL METHOD. This method is very popural among the students who studies Numerical Techniques.Though this program cant find the solution of every equations,it is widely used.This can only found the solutions of those equations which are Digonally dominant. | |
is there anyway to print out any string on stdout without using semicolon at the end... ?? plzz reply | |
Re: hi :rolleyes: ......these days only most of the ppl will suggest u to use c or C++ as a beginners...me too will advice u the same but if u really wants to start from the scratch then i will suggest u BASIC ...its a beginners all purpose symbolic instruction code | |
Re: I live in INDIA and i m quite comfortable here .......however 1 time i'd like to visit pakistan | |
[code] # include<stdio.h> void main() { int p; p = (1,2,2,100,1); printf("%d",p); } [/code] I dont know what will be the output . Can anyone please tell me what exactly second line implies ?? :rolleyes: | |
if i write [code] if(printf("C is Wonderful") { } [/code] It worked. But if i write [code] if(cout<<"C is wonderful") { } [/code] Can anyone tell me whats the reason behind it ? | |
Re: hey b4 goin for online tutorials first switch to ur books.....I think for begenners Yashwant karnetkar's book in c is best.....or u can also follow deitel & deitel - C how to program...however for any prob feel free to post ur query | |
I was tring to write some data in a file from the singly linked list and also read the data from that and append it to singly linked list in the begening of the program.For this i had written two seperate functions . 1. writetofile 2. readfromfile for appending the … | |
Is there any way to know the system date automatically using a c program ? If yes please guide me through some codes !! |
The End.