Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~7K People Reached
PC Specs
Windows 7 64-bit/ 4Gb RamCore 2 duo 2.40 GHZ
Favorite Tags
Member Avatar for Kamatari

I'm torn on the A+ certification. I've read lots of different opinions,views, and stories regarding getting this certification. A lot of the opinions I read stated it generally wasn't worth attaining, especially if you want to own a business. A lot of employers made statements that seemed rather snide towards …

Member Avatar for CleoTek
1
164
Member Avatar for june 200090

hi how are you ? i have project in loop but i dont know how to solve it ? Write a C program to read results of class of 20 students. Each student has 4 results, distributed as follow: • Test 1 25 % • Test 2 25 % • …

Member Avatar for june 200090
0
170
Member Avatar for hsetaknev

Hey guys,I admit I do commit Mistakes But this piece of code got well executed in my college (USED TURBO C++) But in my home PC (UBUNTU) Its not getting COMPILED [CODE]#include<stdio.h> /*header*/ //#include<conio.h> /*header*/ #include"maths.h" int main() { int rur1,rur2,b,a,c,x,y; int d; //clrscr(); printf( "Enter the value of A …

Member Avatar for Trentacle
0
146
Member Avatar for arshi9464

why do we need data structures, if it is a way of storing data in computer in an efficient way, then the computer itself has the ability to store the data in an efficient way, why do we create linked lists n other stuffs. why do we use stacks,trees n …

Member Avatar for Jason Giggs
0
187
Member Avatar for shanki himanshu

hi guys...actually m in deep trouble.i have to make projct in turbo C. but i dont have any time left.Can ny1 help me. can ny1 send me projct so dat i cant lose my marks. plz help meee...

Member Avatar for Kamatari
-8
130
Member Avatar for kapilsolanki84

hello, can any 1 please help/guide me for creating an program .exe file in C. as i am using Dev c++ compiler.say for E.g( program of addition in this by compiling & running it i get the required output. but if i dont want to run the program again n …

Member Avatar for sharunkumar
0
3K
Member Avatar for Kamatari

Well, after searching through some old posts here, I found that there were different ways to go about playing general sound effects in C. Can anyone help me figure out how to play sounds in my programs? I'm making them in C ( hence this sub form) and I'm on …

Member Avatar for death_oclock
0
122
Member Avatar for terabyte

I'm very interested in learning C before C++ but I can't find good books The K&R book looked very organized and short but it seems it is very outdated. So my two questions are.. Should I read the K&R book even thought it uses an old standard, if I do …

Member Avatar for Trentacle
0
177
Member Avatar for lucdatuv

i feel that laws are illogical in many cases, and are often broken and people are never caught. So surely this leads to intelligent and logical people breaking the .aw freely and easily? I hate that i am labelled as disobediant when truly i am just more intelligent than all …

Member Avatar for MooGeek
-6
341
Member Avatar for aria12

How to write a program that asks the users to enter two integers, obtains the numbers from user, then prints the larger number followed by the words "is larger", if the numbers are equal, print the message "these are equal". use only the single-selection form of the if statement.

Member Avatar for aria12
0
173
Member Avatar for qazplm114477

I was just really curious if this website [URL="http://www.webking.com/"]http://www.webking.com/[/URL] is for real or is it just a joke? There are even [URL="http://www.webking.com/computer-services/index.html"]testimonials [/URL]and stuff

Member Avatar for cwekeybb2351
0
659
Member Avatar for jeremy62

so basically i wrote a progarm that begins with a menu allowing you to select one of 5 functions, but at the end of whichever function i would like it to return to the menu the problem is i dont know how to do that and would like any tips …

Member Avatar for Shankye
0
251
Member Avatar for Dean_Grobler

Hi guys, So the question is pretty straight forward. Any sites that are really cool with a HUGE variety? I'm mostly looking into downloading metal, just incase there's cool sites for that also. A little twist perhaps, is that I want to download it from work. But obviously there's a …

Member Avatar for Dean_Grobler
0
174
Member Avatar for Dannyo329

Fail :icon_exclaim: :icon_lol: [url]http://www.youtube.com/watch?v=25UJlRd3lKs[/url] *Not Mine Though -_-

Member Avatar for Kamatari
0
133
Member Avatar for hqrtt

Hey guys, I'm a newbie in C and I've got to make an app: Users enter 10 numbers; I've got to compare them; At the end tell the user if a) Number are decreasing (ex: 10 9 8 7 6 5 4 3 2 1 0) b) Number are creasing …

Member Avatar for Snehamathur
0
119
Member Avatar for gahhon

[CODE]void InputFunction() { system("cls"); printf("\n"); printf("\t\t ***************************************\n"); printf("\t\t ***************************************\n"); printf("\t\t *** ***\n"); printf("\t\t *** WELCOME TO ***\n"); printf("\t\t *** CLASS ATTENDANCE SYSTEM ***\n"); printf("\t\t *** ***\n"); printf("\t\t ***************************************\n"); printf("\t\t ***************************************\n"); printf("\n\n"); fflush(stdin); printf("\t\t What Is The Course Code? "); scanf("%s", SubCode); fflush(stdin); fflush(stdin); printf("\t\t How Many of The Total Weeks? …

Member Avatar for Kamatari
0
113
Member Avatar for Hayzam_#include
Member Avatar for arthurav

I have found on the internet a tutorial that helps me create an abstract background. Is it a problem if I will use a slightly modified version (same colours, different size of the elements) of the tutorial to create a book cover? Thank you.

Member Avatar for eno_diputs
0
115
Member Avatar for mfaisalm
Member Avatar for ram619

Hiiiiiiiiiiii!!!!!!!!!........... The program written below runs perfectly upto some extent but the output varies............because the compiler prints the "{Enter the value}" line twice and itself adds a positive number in the counter.................. [code=c] #include<stdio.h> #include<conio.h> int main() { int sum1=0,sum2=0,sum3=0; char value,alpha; while(alpha!='D') { printf("\n Enter the value"); scanf("%c",&alpha); if(alpha==0) …

Member Avatar for Kamatari
0
132
Member Avatar for Kamatari

Hello all,I joined because this looked like the best place to go to talk to fellow programmers, and also seemed the most active from the sites I checked out. Hope to meet you all :D

Member Avatar for WASDted
0
41
Member Avatar for fyezool
Member Avatar for murtazamzk

Below is the program for swapping variables without any extra variable. [CODE] #include "stdio.h" #include "conio.h" void main() { int a=7;b=5; clrscr(); a=a+b; b=a-b; a=a-b; getch(); }[/CODE]

Member Avatar for Kamatari
0
175