Search:

Type: Posts; User: subhadeepgayen

Search: Search took 0.01 seconds.

  1. Thanks for clearing me up. @adak thanks for...

    Thanks for clearing me up.
    @adak thanks for further suggestions but those are just testing values, so it wont be alternating for final one.
  2. Initializing 2D array in Middle of program

    for(i=0;i<strlen(string);i++)
    {
    switch(string[i])
    {
    case 'A':
    case 'a':
    digits[i][6]={1,0,1,0,1,0}; <<<<<<<<<< DA PROBLEM
    ...
  3. Replies
    2
    Views
    10,596

    Thanks for the suggestions :)

    Thanks for the suggestions :)
  4. Replies
    2
    Views
    10,596

    Star Pyramid

    Hi,

    I have successfully created a star pyramid using the below code, but i wanted to know if there is any other method by which i can do it using less loops or variables ??

    OR maybe how would...
  5. Replies
    10
    Views
    13,995

    @elysia Thanks very much its working now :) ...

    @elysia

    Thanks very much its working now :)

    i really need some code highlighting editor, its very difficult to distinguish codes as i'm C n00b , i'll try Visual Studio or CB today :)
  6. Replies
    10
    Views
    13,995

    I do have anather non working program if anyone...

    I do have anather non working program if anyone can help :), i have tried it from book illustrating C,



    // Character counting small program
    #include <stdio.h>

    void main(void){
    int...
  7. Replies
    10
    Views
    13,995

    @kermit The double %% is deliberate to print % at...

    @kermit The double %% is deliberate to print % at the output

    @LordPc i'm using DevC++ can you link to some free or cheap editor? thanks
  8. Replies
    10
    Views
    13,995

    oops...so silly of me.:), thanks for ur time :)

    oops...so silly of me.:), thanks for ur time :)
  9. Replies
    10
    Views
    13,995

    Syntax Error Before ';' Token

    Hi,

    I'm learning C Basics,

    Here's my code :



    // This program finds the monthly installment
    #include <stdio.h>
Results 1 to 9 of 11