• Member Avatar for Learner010
    Learner010

    Marked Solved Status for printing fraction in web

    I'm using mathjax in ckeditor and i want to print the fraction (uploaded here in the link [Click Here](http://tinypic.com/r/23k465g/9)).So,what command i have to write to print that fraction ? Here …
  • Member Avatar for Learner010
    Learner010

    Edited printing fraction in web

    I'm using mathjax in ckeditor and i want to print the fraction (uploaded here in the link [Click Here](http://tinypic.com/r/23k465g/9)).So,what command i have to write to print that fraction ? Here …
  • Member Avatar for Learner010
    Learner010

    Created printing fraction in web

    I'm using mathjax in ckeditor and i want to print the fraction (uploaded here in the link [Click Here](http://tinypic.com/r/23k465g/9)).So,what command i have to write to print that fraction ? Here …
  • Member Avatar for Learner010
    Learner010

    Began Watching printing fraction in web

    I'm using mathjax in ckeditor and i want to print the fraction (uploaded here in the link [Click Here](http://tinypic.com/r/23k465g/9)).So,what command i have to write to print that fraction ? Here …
  • Member Avatar for Learner010
    Learner010

    Created About MathsJax

    first off, i've never been to web development. I'm developing my personal website where, for some purpose , i need to display some math figures. And somebody suggested me to …
  • Member Avatar for Learner010
    Learner010

    Began Watching About MathsJax

    first off, i've never been to web development. I'm developing my personal website where, for some purpose , i need to display some math figures. And somebody suggested me to …
  • Member Avatar for Learner010
    Learner010

    Created Back to Daniweb for learning Android Development

    I'm back here after a very long period. And see lots of changes here. Beautiful and amazing design. I was missing some illustrious members. here is who are they ? …
  • Member Avatar for Learner010
    Learner010

    Began Watching Back to Daniweb for learning Android Development

    I'm back here after a very long period. And see lots of changes here. Beautiful and amazing design. I was missing some illustrious members. here is who are they ? …
  • Member Avatar for Learner010
    Learner010

    Began Watching my 1st one

    #include <iostream> #include <conio> void main () { cout<<"rose mary"; getch(); }
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in my 1st one

    >so what should i use instead of <conio> ?? I think nothing.Because in your code you use `conio` for just `getch()` function.I never realized the need of using `conio` and …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Beginner's Tutorial On Functions

    >in arguments and return part, if the first condition is true then x is returned to the main function with the value it carries? It will return `x` if `x` …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in creating chat application

    okay , i make it more clear.Actually i don't more about ip.i heard that it could be done using ip addresses. it should ask to enter ip address for any …
  • Member Avatar for Learner010
    Learner010

    Created creating chat application

    hello i want to create a chat application. i will design it once i get the idea of how it works.the chat will be based on ip addresses. is it …
  • Member Avatar for Learner010
    Learner010

    Began Watching creating chat application

    hello i want to create a chat application. i will design it once i get the idea of how it works.the chat will be based on ip addresses. is it …
  • Member Avatar for Learner010
    Learner010

    Began Watching Android Phone Doesn't Charge

    For some odd reason, this whole week, my phone hasn't managed to get even 10% charge on it after charging it overnight. Basically, I plug it in at night, charge …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Android Phone Doesn't Charge

    >Did you by any chance happen to have discharged the battery completely while playing a heavy duty game? If so, I would bet your battery is toast. Reaching the minimum …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Dynamic Mem Allocation within function

    thanx for valuable replies. but i want to send parameter(pointer to an array of n elements) and retun pointer to array and then delete it from main. what syntax to …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Dynamic Mem Allocation within function

    Here is the code illustrating the concept int* allocate() { int* p=new int; //dynamically allocation *p=10; return p; //returning pointer } int main() { int* p1; p1=allocate(); cout<<*p1<<"("<<p1<<")"<<endl; //memory still …
  • Member Avatar for Learner010
    Learner010

    Began Watching Dynamic Mem Allocation within function

    When I dynamically allocate mem within a function, do I have to still manually release it? Or does it go away once the function has run and returned (like local …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Dynamic Mem Allocation within function

    > When I dynamically allocate mem within a function, do I have to still manually release it? Or does it go away once the function has run and returned (like …
  • Member Avatar for Learner010
    Learner010

    Began Watching Length of string

    how to find length of a character string without using while loop or user defined function?
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Length of string

    >without using while loop or user defined function? with this line , your question becomes very easy.I'd say use library function.I think its `str.length();`
  • Member Avatar for Learner010
    Learner010

    Began Watching Char manipulations problem

    > Not sure why do I always get a 0 from the isvalidReal function? int isvalidReal(string signedNum) { bool check; int i = 0, j = 1; string str = …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Char manipulations problem

    there are a few mistakes in your code. **1.** when you're defining a return type as bool then why are you returning an integer.so either make it int or change …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Magic Square game

    i think `new` operator is associated with pointers(however array items can be accessed using a pointer).In this case i think `new` operator is good choice. if OP is using `new` …
  • Member Avatar for Learner010
    Learner010

    Began Watching Having trouble on this program that i'm making...

    I've been dealing with this problem for about 2 days now. Write a program that accepts the price of an item and displays the discounted price. Accept also the amount …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Having trouble on this program that i'm making...

    Sorry for disturbing . . . i never use `conio.h` because i'm learning C++(and hopefully ,there isn't like conio.h).But i often see some threads indirectly focused on `conio.h`.All the exprets …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Magic Square game

    >C++ does not support them as can be read in the standard (8.3.4.1). thanks.i get it.you were correct. An array bound must be a constant expression. for variable bound , …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Sum of ages

    > Hey if you want to enter age and weight of 5 persons why don't you use the concept of arrays. if you read the question carefully , the OP …
  • Member Avatar for Learner010
    Learner010

    Began Watching Magic Square game

    int game() { int n; cout << "enter an odd number: "; cin >> n; int MagicSquare[n][n]; // It says that the expression must have a constant type? int newRow,newCol; …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Magic Square game

    >// It says that the expression must have a constant type? perhaps you are working with pre standard c++ in which array size must be a constant value.variables are not …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in 1.11

    Well Done ! its now 1.11M Members.
  • Member Avatar for Learner010
    Learner010

    Began Watching 1.11

    Yay! But what is 'MM' out of curiosity? 1.11 millimetres? :) ![927c8d593a30ce14fd7817d5d35c4f71](/attachments/small/0/927c8d593a30ce14fd7817d5d35c4f71.jpg "align-left")
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in 1.11

    > MM is an abbreviation for million Correct. But you can either use only M or MLN > since M can be confused with the roman numeral meaning thousand. then …
  • Member Avatar for Learner010
    Learner010

    Began Watching pointers and refs

    In the following program I'm getting the warning -> unused variable ‘fn’. I'm following along with a book so I don't know why it gave me that portion of code …
  • Member Avatar for Learner010
    Learner010

    Began Watching How does linking occur in this?

    Main.cpp #include <iostream.h> #include "functions.h" int main(){ print_hello(); cout << endl; cout << "The factorial of 5 is " << factorial(5) << endl; return 0; } hello.cpp #include <iostream.h> #include …
  • Member Avatar for Learner010
    Learner010

    Began Watching How to make a code that could open/execute Microsoft Access 2007 ?

    Can someone please help me ? I made a button named "Open" for Visual Basic 6.0 , and i would like to execute/open Microsoft Access 2007, can someone please help …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in How to make a code that could open/execute Microsoft Access 2007 ?

    its not hard. first off , just locate where is EXE for MS Access and then put the address in shell statement.this is what i've in vb.net , i'm not …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Receive a number from the keyboard and tell you if it is divisible by...

    I would again say that read the thread again.I already pointed out the line , once again i do so , `if it is not divisible by any of these.` …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Receive a number from the keyboard and tell you if it is divisible by...

    >run enter 50 answer is divsible. if enter 35 ans not divsible. if you read the question carefully then you would notice this (*if it is not divisible by any …
  • Member Avatar for Learner010
    Learner010

    Began Watching Sum of ages

    Read the age and weight of 5 people. Calculate the sum of the ages of people over 70 Kg #include <stdio.h> int i, age, weight, sum; main() { for( i=0; …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Sum of ages

    >scanf is dangerous. would you please explain why scanf is dangerous for getting input to numbers. if it is dangerous then what function should be used for getting input to …
  • Member Avatar for Learner010
    Learner010

    Began Watching Pointer

    I am confused about pointer , it takes value of a vairable or only takes adress of vairable ??
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Pointer

    > it takes value of a vairable or only takes adress of vairable ?? pointer variable takes address of another variable which must be same as pointer type.you can't point …
  • Member Avatar for Learner010
    Learner010

    Began Watching Receive a number from the keyboard and tell you if it is divisible by...

    Receive a number from the keyboard and tell you if it is divisible by 10, 5, 2 or if it is not divisible by any of these. Why this dont …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Receive a number from the keyboard and tell you if it is divisible by...

    First off , there is no need to use `#include<stdlib.h>` and `#include<math.h>` because there is no such need in your code. i agree with both of the above replies. > …
  • Member Avatar for Learner010
    Learner010

    Began Watching create a program

    please help me i need to make a program to calcutale the grade of a student with a prelim = 20% midterm = 20% prelfinal = 20% final = 40% …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in create a program

    first off , don't hijack other's thread. create your own thread. I give you an answer assuming you're new to daniweb and further won't ask such questions . okay ? …
  • Member Avatar for Learner010
    Learner010

    Began Watching interesting sequence

    I have a c++ project that is due on friday. please help :( Codes should not be too advanced. Use loop or array. >Introduction: An interesting sequence of numbers can …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in interesting sequence

    > If you handle each part as a separate problem you'll probably find you step through it pretty quickly. correct. your questions is not difficult. you can solve the homework …

The End.