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 8
c x 2

8 Posted Topics

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
147
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
166
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
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
113
Member Avatar for opawix

check this out:- 1.3 space 1.2 space 1.5 space 1.2 space 1.3 enter [CODE]#include<iostream> #include <iomanip> using namespace std; int main() { float pre, mid, semi, final, total; cout << "Prelim: "<<setw(5)<< "Midterm: "<<setw(5)<< "Semifinal: "<<setw(5)<< "Final: "<<setw(5)<< "Final grade: \n"; cin>>pre>>mid>>semi>>final; total = (pre+mid+semi+final)/4; cout<<"total is="<<total; system("pause"); return 0; …

Member Avatar for namratag
0
103
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
104
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
196

The End.