Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~4K People Reached
Favorite Tags
c++ x 6
c x 2
Member Avatar for ayeshashahid

i have written a program taking marks of 35 students and calculating their average.can somebody please help me find my mistakes.the compiler is giving errors errors:---------------------Configuration: t2 - Win32 Debug-------------------- Compiling... t2.cpp E:\coding\t2\t2.cpp(21) : error C2109: subscript requires array or pointer type E:\coding\t2\t2.cpp(21) : error C2679: binary '>>' : no …

Member Avatar for Moschops
0
144
Member Avatar for ayeshashahid

i have a serious problem with this malloc function used in C language.i have been studying the topic "new" for few days,and there i found a code in which malloc was used.i am trying to change it to new but my compiler always always CRASHES. the line which i think …

Member Avatar for ayeshashahid
0
161
Member Avatar for ayeshashahid

can somebody tell me what can be the application of bubble sorting.or what actually application of bubble sorting means is it the usage of bubble sort in different areas.please give me some applications of it..

Member Avatar for ayeshashahid
-1
2K
Member Avatar for maple123

Hey everyone, I need help creating a program that will add and multiply polynomials using linked lists. The polynomials that will be added and multiplied by my program are taken from an input file. This file contains the polynomials in the form: 3 2 5 1 3 0 XXX 2 …

Member Avatar for raptr_dflo
0
725
Member Avatar for ayeshashahid

i need help in making the size of the array to n size in queues.i have made a program help me in it. [CODE]////##############///// #include <iostream> using namespace std; #define MAX 5 class queue { private: int t[MAX]; int al; int dl; public: queue() { dl=-1; al=-1; } void remove() …

Member Avatar for Mr. K
0
110
Member Avatar for opawix

Hello ma'am/sir any help for the codes of input to be align.heres my code: [CODE] #include<iostream> using namespace std; int main() { float pre, mid, semi, final, total; cout << "Prelim: "<<setw(20)<< "Midterm: "<<setw(20)<< "Semifinal: "<<setw(20)<< "Final: "<<setw(20)<< "Final grade: \n"; cin>>pre>>mid>>semi>>final>>total; total = (pre+mid+semi+final)/4; system("pause"); return 0; } [/CODE] …

Member Avatar for namratag
0
99
Member Avatar for ayeshashahid

i need help on comparative analysis of waterfall,prototype and agile methodologies.give me some instructions how should i do it.i have to write a 3000 words essay on this topic.what points should i keep in mind while writing it

Member Avatar for Taywin
0
102
Member Avatar for ayeshashahid

[CODE]//SOME BODY PLEASE WRITE THIS IN C++ LANGUAGE// //THANK YOU// # include<stdio.h> # include<conio.h> /*program to evaluate the given postfix expression*/ typedef struct { int a[100]; int top; } STACK; void push(STACK *s,int x) { if(s->top==99) printf("STACK OVERFLOW\n"); else s->a[++s->top]=x; } int pop(STACK *s) { int x; if(s->top<0) printf("STACK UNDERFLOW\n"); …

Member Avatar for ayeshashahid
0
191