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
~2K People Reached
Favorite Forums

6 Posted Topics

Member Avatar for maryam ahmad

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> …

Member Avatar for maryam ahmad
0
1K
Member Avatar for maryam ahmad

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?

Member Avatar for daviddoria
0
99
Member Avatar for Offshore Pro

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!! …

Member Avatar for LoganJames
0
184
Member Avatar for Jack_1

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++) { …

Member Avatar for NP-complete
-1
154
Member Avatar for maryam ahmad

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] …

Member Avatar for maryam ahmad
-1
145
Member Avatar for maryam ahmad

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 …

Member Avatar for Fbody
0
157

The End.