- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
8 Posted Topics
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 … | |
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 … | |
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.. | |
Re: can i see the overall code | |
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() … | |
Re: 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; … | |
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 | |
[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"); … |
The End.