- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
6 Posted Topics
i'm working on visual studio 2008. I'm trying use fopen to open txt files and it does not give any errors but its not doing the required task either. i've to submit this project on monday! please help here's part of the code: [CODE]#include <stdio.h> #include<iostream> #include <conio.h> #include <string> …
how can we make a C++ program that identifies whether the user has input a vowel or a consonant specifically by using the SWITCH structure? i mean its simple with if-else but is there a way it can be made with switch and not if-else?
heya!! im new tooo.. new to the community and new to programming.. and already in love with C++!!! it feels great to get stuck in programming problems!!! hope to learn alot from u all. i have spent just 3 days with the community with one problem already solved!! rock on!! …
also try this code: #include<iostream> using namespace std; void function (int a); void main () { cout<<"This program finds the factor of a no."<<endl; int a; cout<<"Please input a no."<<endl; cin>>a; function(a); } void function ( int a) { cout<<"the factors of "<<a<<" are :"<<endl; for(int x=1; x<a ;x++) { …
this is a program to change the case of all letters input by the user to small. im getting the right output with this coding. the problem is that its giving some staircase type structure as the output as well. HOW DO I GET RID OF THIS EXTRA STUFF? [code] …
im a beginner and using C++ 2008 edition and this pow function isnt working on it although its working perfectly ob C++6. please help. THIS IS PART OF THE CODE: [CODE]#include<iostream> #include<cmath> using namespace std; int det (int **oldray,int order) { int deter=0,i,k; int **newray; newray=new int*[order-1]; for( i=0;i<order;i++) newray[i]=new …
The End.
maryam ahmad