User Profile

Collapse

Profile Sidebar

Collapse
shashankraj1231
shashankraj1231
Last Activity: Feb 21 '12, 03:11 PM
Joined: May 23 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • shashankraj1231
    replied to Need help with window installer
    Create a New User account using the Safe mode option and login with that user in Normal mode.

    Here is the link on how to go to the safe mode : -

    http://www.techsupportalert.com/cont...s-xpvista7.htm

    Here is the link on how to create a new user :-

    http://windows.microsoft.com/en-IN/w...a-user-account . On this link, select the option "My computer is in...
    See more | Go to post

    Leave a comment:


  • Create a schedule task using the Trigger as "At logon" and specify for all users.

    That should help.
    See more | Go to post

    Leave a comment:


  • You can try this:

    Start -> Run -> msconfig

    In the services tab, click on Hide all Microsoft services on the bottom left and disable everything else, except the Kaspersky services.

    In the startup tab, disable everything else except the Kaspersky Antivirus option.

    Save changes and restart the computer.

    Also, is it just the My computer taking a long time to open or same is the...
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    replied to File handling related question
    in C
    Not exactly what I wanted but that'll do. Thanks for the reply.
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    replied to File handling related question
    in C
    wow, this looks promising. Let me try that and i shall generate the code for the same as well and see if this works....
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    replied to File handling related question
    in C
    I am able to go past that and the program works fine to input data, store it to the file and output to the console.
    It is just the part where I have to PRINT the entire line that contains at least a vowel, confusing me.
    I have tried many strategies but they don't work....
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    replied to File handling related question
    in C
    Actually, I have to Print the LINE that contains the vowel, not just find that vowel. I mean, every time, that file is opened, there would be multiple lines in that.
    Out of those line, We need to actually PRINT the entire line that contains at least a vowel.
    I not able to devise a strategy to print the lines to the output screen.
    Also, If I HAVE TO ARRANGE THE LINES according to their length and print it to the console,...
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    started a topic File handling related question
    in C

    File handling related question

    I am trying to write a program in "c" language that accepts file as input and prints only those lines of the file, that contains at least one vowel.

    I have written the code so far as

    Code:
    #include <stdio.h>
    #include <conio.h>
    #include <string.h>
    
    void main()
     {
        FILE *fp;
        char ch[100];
        char chn[50];
        int chk=0;
    ...
    See more | Go to post

  • Thanks for the reply. Let me try that and see how it goes.
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    started a topic Insert a number at a specified position
    in Java

    Insert a number at a specified position

    I am trying to write a program in which i can insert a given number, taken as a input from the user, in a array, provided by the user at a position of the user's choice, but i am not able to do that. Please let me know what i am doing wrong.

    Also, I am trying to achieve that using two arrays. Is there a possibility to achieve the same result using just one parent array?


    Code:
    import java.io.*;
    
    public class
    ...
    See more | Go to post
    Last edited by Niheel; May 31 '10, 04:33 AM. Reason: added code tags

  • shashankraj1231
    replied to Store the numbers in a array in Java
    in Java
    Thank you for the explanation of the exception. That gave me a clear understanding of how it works.

    Regards,
    Shashank....
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    replied to Store the numbers in a array in Java
    in Java
    Thank you very much for that explanation, I understand the For-Loop much better now. I was not aware that the the increment runs before the conditional check.
    I corrected the program by adding
    if (arr[i]== -1)
    break;

    and it works like magic now.

    Regards,
    Shashank....
    See more | Go to post

    Leave a comment:


  • shashankraj1231
    started a topic Store the numbers in a array in Java
    in Java

    Store the numbers in a array in Java

    I am trying to write a Java program in which we would take input from the user until
    the user enters -1. The input would be integers and has to be stored in a integer array.

    I am a newbie in Java and i am trying to self study here. Please tell me what am i doing wrong. It would be of great help.

    Code:
    class storearray{
    	public static void main(String args[]) throws IOException
    	{
    		BufferedReader dis=
    ...
    See more | Go to post
    Last edited by Niheel; May 25 '10, 08:57 AM. Reason: Don't need the hellos and thank yous. :)
No activity results to display
Show More
Working...