Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
8% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
19
Posts with Downvotes
9
Downvoting Members
14
2 Commented Posts
1 Endorsement
Ranked #856
Ranked #2K
~16.8K People Reached
Interests
ITS JUST C N C++ NOW...
Favorite Forums
Favorite Tags
Member Avatar for shahirulnizam
Member Avatar for YAMNA MIDHAT

this is my code .can any one please tell me why the program is not giving proper results?? [CODE]#include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> //2d linked list major aasg#1 //structure type struct items { int id; //item no; char name[]; int price; char color[]; items *previous; items *next; }; //functions sort(); show_all(); …

Member Avatar for ChrisPadgham
-2
163
Member Avatar for YAMNA MIDHAT

Hi, i am making a text editor with mouse programming.Given is my code .the compiler is not giving any error but i am unable to use enter,delete,backspace and arrow keys . can any one please tell me the logic with which i can make my project more better. THANKS in …

Member Avatar for WaltP
0
179
Member Avatar for mrnutty

[URL="http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books/"]List of free programming books[/URL]. Enjoy and happy new year!

Member Avatar for YAMNA MIDHAT
4
128
Member Avatar for YAMNA MIDHAT

this is my program but this is not working well.according to me a window should be created and some text will be written there.but the window is not working please can any one tell me why?and how can i eject this error. mind that compiler is running the program correctly.. …

Member Avatar for zeroliken
-2
200
Member Avatar for YAMNA MIDHAT

Can any one please tell me that why turbo c is not supported by windows 7?:?:

Member Avatar for YAMNA MIDHAT
0
161
Member Avatar for Ich bin würdig

Does someone know how to integrate a collection of programs as one whole program? Thanks. :)

Member Avatar for Smeagel13
0
94
Member Avatar for lilsancho

Hi all I'm wondering if some one could help me with something as i think i've just forgotten everything i knew :) I have this code: [CODE] #include <stdio.h> #include <stdlib.h> int main() { char A[4]; char B[2]; char C[2]; printf("Enter Numbers: "); scanf("%s",&A); fflush(stdin); printf("Enter Numbers: "); scanf("%s",&B); fflush(stdin); …

Member Avatar for Narue
0
187
Member Avatar for klimburt

does somone knows how to creatye a program that well accept five members and display the lowest number

Member Avatar for lokeshg
0
297
Member Avatar for UNDER-18 FG

Hey, everyone~ Being the second time posting here, I'll try to make it simple but clearly as possible :) So, my assignment this time is about writing a C program to print the following star patterns: [CODE] * * * * * * * * * *[/CODE] So, here is …

Member Avatar for YAMNA MIDHAT
0
281
Member Avatar for zeus god

can an1 plz :)help me to write a program to reverse the individual words present in a string ?? exampe:- my name is raju ym eman si ujar

Member Avatar for YAMNA MIDHAT
0
236
Member Avatar for sethii

Hi everyone! This is my first post and i'm also a newbie so don't be harsh on me! I have this exercise to do which asks pretty much what the title says. I have a function that reads strings from a file and puts them in an array. Then I …

Member Avatar for YAMNA MIDHAT
0
214
Member Avatar for YAMNA MIDHAT

i have made a program with this algorithm but its not working properly my code is given below can you help me to remove the errors [CODE] #include<stdio.h> #include<conio.h> void main() { FILE *f; char ch; int nalpha=0,nword=0,nno=0,nsc=0; f=fopen("abc.txt","r"); if(f!='NULL') { while(ch=getch(f)!=EOF) { printf("%c",ch); if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z')) nalpha++; else if((ch==' ')||(ch=='.')) nword++; …

Member Avatar for YAMNA MIDHAT
0
163
Member Avatar for terence193

This is what the question is asking: Write a program to get the user to enter a positive number. Validate the input so any negative or zero number entered is rejected and the user is to re-enter the number. and this is what i have done [CODE]#include<stdio.h> int main (void) …

Member Avatar for YAMNA MIDHAT
0
197
Member Avatar for aKiLa.. :)

i want to do a project in c programming.. what topic should i choose and what all should i include to make it look decent?

Member Avatar for sergent
0
215
Member Avatar for guidely

HI how can store multiple array into one array [CODE] int id[5] = { 1,2,3,4,5,6}; int size[5] = {35,76,85,78}; int PerBox[5] = {12,24,44,54}; double Price[5] = {3.32,6.76, 13.45,6.08,7.8}; int item[200],i; for(i=0;i<4;i++) { item[i] = {id, size, PerBox, Price}; } [/CODE] each element should store id, size, perbox, price and output: …

Member Avatar for cse.avinash
0
251
Member Avatar for Uni

From a text file, i should get the necessary information in order to create a beat map, a representation of what we see in music sheets, from this text file: [CODE]3 measures 3 4 time signature 4 beats 4 note, measure 1 3 note, measure 1 1R rest, measure 1 …

Member Avatar for YAMNA MIDHAT
0
171
Member Avatar for Tenjune

I'm testing this sample fast food chain program and my problem is every time I select the order the resulting price is like Php895764796364227741000000000000000.0000 Here's the code: [CODE] #include<stdio.h> main() { int choice; float TP; clrscr(); printf("Welcome to Greenwich!\n\n"); printf("This is our menu:\n"); printf("1. Overloaded Pizzas\n"); printf("2. Extreme Cheese Overload\n"); …

Member Avatar for YAMNA MIDHAT
0
112
Member Avatar for virendra_sharma

Hi frnz , i need a code for 2^n and suppose user enter n = 4 , so the output will be 16 . Now whatever output we will get i need sum of numbers in that output e.g here we have 16 i.e 1 + 6 = 7 . …

Member Avatar for Mouche
0
134
Member Avatar for Ich bin würdig

Can someone please check my syntax? Thanks. The program runs but the output has some kind of error. Thanks. [CODE] #include<stdio.h> #include<conio.h> #include<string.h> void Pig_Latin_Converter() { char str[50]; char nv[50]="yay"; char c[50]="ay"; char key[]="aeiou"; char keys[]="bcdfghjklmnpqrstvwxyz"; char test[20]; char *p=str; scanf("%s",str); { p=strpbrk(str,key); if(str!=p) { strcat(str,nv); printf("Output: %s", str); } …

Member Avatar for YAMNA MIDHAT
0
187
Member Avatar for Leaningnew

why we need to avoid using scanf to read a character???? can anyone explain it clearly??

Member Avatar for cse.avinash
0
105
Member Avatar for YAMNA MIDHAT

I want to make a text editor in c or c++ with features like bold,italic,underline,save as ,save,open,font size,font colour, font type,alingment(left,right,mid),cut,copy,paste.......... Plz i need the code if any one can help me plzzzzzzzzzz,,,,,,,,,,,

Member Avatar for YAMNA MIDHAT
-5
4K
Member Avatar for KOFguru

I am having problem with `clrscr' undeclared (first use this function) (Each undeclared identifier is reported only once for each function it appears in.) when I am compiling it in DEV-C++ .....please let help me with these [CODE]#include <stdio.h> #define p print f #define s scan f main() { int …

Member Avatar for ashwin k v
0
199
Member Avatar for sayoojya
Member Avatar for dharini6030
-8
8K
Member Avatar for YAMNA MIDHAT

hi this is m,e yamna midhat i saw this all during my search for the text editor .... n about my self is that i am a student of computer scince in karachi university and its my first year there i dont know much about programming,networking and bla bla bla …

Member Avatar for PCSAWICK829
0
155
Member Avatar for KillaCampV2

Hello Daniweb, im new to coding period. I love technology and everything about it. I hope to learn some java before I get into my major classes at school. Im also thinking about C++ after i get java down.:*

Member Avatar for YAMNA MIDHAT
0
21
Member Avatar for kooletz

Please help me on my bloodshed 9.4.4.2 assignment, i need to create a program that will view the name and salary. i already created 1 program but in converting Km to mile and the time of the destination when reach.. here are i need to input and to be an …

Member Avatar for YAMNA MIDHAT
0
146