Search:

Type: Posts; User: gad n' gaz

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    1,172

    int main() { int i,j; printf("Enter an...

    int main()
    {
    int i,j;
    printf("Enter an interger: ");
    scanf("%d",i);

    Ok give me a hint:
    what kind of code am looking to make?
  2. Replies
    8
    Views
    1,172

    but won't outputvalue=inputvalue only dublicate...

    but won't outputvalue=inputvalue only dublicate the inputvaluei.e the will give interger that you enterd?
  3. Replies
    8
    Views
    1,172

    my "initial efforts" resulted in nothing but...

    my "initial efforts" resulted in nothing but syntax errors so dont have initial efforts that i can actually speak of,any ideas?
  4. could you please post the whole code am still...

    could you please post the whole code am still having problems
  5. Replies
    8
    Views
    1,172

    inverting integers.

    How can i write a program that accepts an integer stores it in a variable1.The program then reverses the digits in the integer and stores them in another variable2,then outputs both integers?...
  6. ingnore i=i+1, it is suposed to be i=i+5

    ingnore i=i+1, it is suposed to be i=i+5
  7. int main() { int i,j; printf("+");...

    int main()
    {
    int i,j;
    printf("+");
    i=5;
    do
    {
    printf("%4d",i);
    i=i+5;
    }while(i<=30);
  8. #include #include void main()...

    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    int i,j;
    clrscr();
    printf("+ ");
    i=5;
    do
    {
  9. how do i make a mathematical table using loops.

    How do i write a program that has only two nested do......while loops that produces:
    + 5 10 15 20 25 30
    50 55 60 65 70 75 80
    40 45 50 55 60 65 70
    30 35 40 45 50 55 60
    20 25 30 35 40 45 50...
Results 1 to 9 of 9