User Profile

Collapse

Profile Sidebar

Collapse
Karan
Karan
Last Activity: Oct 25 '06, 03:48 PM
Joined: Sep 23 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Karan
    replied to output
    in C
    Hi,
    use following for loops to perform abve task:


    for( i =1; i<=5;i++)
    for(j =0; j<=i;j++)
    print j...
    See more | Go to post

    Leave a comment:


  • Karan
    replied to need help to write a program
    in C
    Hi,
    You have to use two for loops to display these kind of output.

    the for loops can be:-

    for( i=1; i<5; i++)
    for( j=1; j<=i; j++)
    print ( j )


    and to search a integer in an 2D array u hve to use again two for loops....
    See more | Go to post

    Leave a comment:


  • Karan
    replied to string manipulation
    in C
    Hi,
    You can directly compare the rach value of string using its ASCII code.
    i.e. first take a counter & increment it till string length != counter.
    Compare the each char in string with ASCII code(ie from 'A' to 'Z' ) that you want to search,if matches then increment a counter....
    See more | Go to post

    Leave a comment:


  • Karan
    started a topic Transfer text file data to oracle

    Transfer text file data to oracle

    Directly transfer data from text file to oracle
    See more | Go to post

  • Karan
    started a topic Oracle-VB

    Oracle-VB

    How can we access Triggers from Oracle in VB?
    See more | Go to post
No activity results to display
Show More
Working...