User Profile

Collapse

Profile Sidebar

Collapse
jimhakans
jimhakans
Last Activity: Feb 9 '08, 02:10 PM
Joined: Sep 20 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jimhakans
    replied to disabled task manager
    i have read those threads but they are not of much use. you and other people told to cheack the folder option in the tools but there is no folder option in the tools, the run>regedit is also not working and msconfig is also not working. I have also tried booting the computer in the safe mode but also there they are not working. Is there any way i can enable my task manger again. Actually my pc has some worms and viruses but i just want to work...
    See more | Go to post

    Leave a comment:


  • jimhakans
    started a topic disabled task manager

    disabled task manager

    Hi. Nowadays i am using one of my user accounts in windows xp. When i open task manager it says that it has been disabled by your admin and the thing is no body has opened the admin account for many days. So please can some body tell me how to activate it again?
    regards
    jim
    See more | Go to post

  • jimhakans
    replied to Confused about while loop condition to '\n'
    in C
    Actually i am a beginner, and i want to learn C, i want to be like you guys. I know very little of C and i think in this site everyone is criticizing me one way or an other. As a beginner i think my logic might be wrong and i might ask rather silly question according to you, But your job is to correct me right. And i think by criticizing someone in return ,it is a very bitter way to answer. One could get disharted.
    But if i have done something...
    See more | Go to post

    Leave a comment:


  • jimhakans
    replied to purpose of conio.h in C
    in C
    Yes, i have searched that but i am not satisfied. By the way can see many people in this forum who are asking question which google can easily answer.
    I have read that conio is used to perform "console input and output" from a program, which is what i dont understand. stdio.h is used for the same thing right?...
    See more | Go to post

    Leave a comment:


  • jimhakans
    started a topic purpose of conio.h in C
    in C

    purpose of conio.h in C

    Can anyone tell me when to add conio.h header file. Is it when you are using getche() function or it has some other functionality as well.
    See more | Go to post

  • jimhakans
    replied to Confused about while loop condition to '\n'
    in C
    First of all i am a beginner C programmer. It is your job to tell me what is the proper method without criticizing me. My questing was quite clear that "Why in the while loop we are giving condition ch not equal to carriage return", Instead of giving me answer you are sying that my title is not correct. What matters if my tilte is not correct, the main thing is that you should clear my concept. According to me the output was wrong as wordcount...
    See more | Go to post

    Leave a comment:


  • Thanks, i got it mow. It was really helpful. Thanks again.
    many regards...
    See more | Go to post

    Leave a comment:


  • jimhakans
    started a topic Confused about while loop condition to '\n'
    in C

    Confused about while loop condition to '\n'

    hi,
    Actually i have seen this program in my book and cant get one thing, the while loop, Why we have used condition not equal to carriage return. One more thing this program is not incrementing the wordcount. it is always showing wordcount=1 no matter how many words the user input.
    Please help!
    [CODE=c]{
    int chcount, wordcount;
    char ch;
    chcount=0;
    wordcount=0;
    printf("\nEnter a phrase\n");...
    See more | Go to post

  • Okay. I will take care about that from now.
    But in that program the output should be 4,3,2,1,0,. (If i am not wrong)
    Please correct me if i am wron.g...
    See more | Go to post

    Leave a comment:


  • jimhakans
    started a topic Recursive call to myfunc(int x) - printing backwards?
    in C

    Recursive call to myfunc(int x) - printing backwards?

    hello every1.
    i have got this code from somewhere but i can not understand its output
    [CODE=c]
    #include<stdio. h>
    void myfunc(int x)
    {
    if(x>0)
    myfunc(--x);
    printf("%d,",x) ;
    }

    int main()
    {
    my func(5);
    return 0;
    }
    [/CODE]
    The output is 0,0,1,2,3,4,. According to my logic the output should be 4....
    See more | Go to post

  • jimhakans
    replied to bubble sort
    in C
    My compiler is saying undefined function "swap" in function main().
    and i dont understand why there is locator in line 10....
    See more | Go to post

    Leave a comment:


  • jimhakans
    started a topic bubble sort
    in C

    bubble sort

    hello there,
    i have very little concept of bubble sort. This code here is not working can u explain Why?
    Code:
    #include<stdio.h>
    main()
    {
    int array[4]={60,88,33,40};
    int j,i;
    for(i=0;i<4;i++)
    {
    for(j=i+1;j<4;j++)
    if(array[i]>array[j])
    swap(&array[i],&array[j]);
    }
    printf("%d",array[i]);
    }
    Can anyone explain me...
    See more | Go to post

  • jimhakans
    started a topic sorting a number in array
    in C

    sorting a number in array

    Can anyone give me idea how to Sort the numbers in arrays?
    See more | Go to post

  • jimhakans
    started a topic Arrays
    in C

    Arrays

    Hi all.
    How many methods are there to define an array in C.
    Any help with examples would be appreciated.
    See more | Go to post

  • jimhakans
    replied to data definition and data declaration
    in C
    Thanks 4 that.
    but can u plz give me exp like
    int a=0;
    this is included in definition right and
    int a;
    this is a declaration that ur identifier is of integer type?...
    See more | Go to post

    Leave a comment:


  • jimhakans
    replied to Different output
    in C
    what if i want "a" to be print first, then what should i do?...
    See more | Go to post

    Leave a comment:


  • jimhakans
    started a topic data definition and data declaration
    in C

    data definition and data declaration

    What is difference between "data definition" and "data declaration"?
    See more | Go to post

  • jimhakans
    replied to Different output
    in C
    Ok but if i reduces that program to this
    Code:
    {
    int a=10;
    printf("%d,%d",a,a++);
    }
    In this program my compiler is printing 11 first and then 10. Why?
    See more | Go to post

    Leave a comment:


  • jimhakans
    started a topic Different output
    in C

    Different output

    Hello there. I need help with this program.
    Code:
    { 
    int a=10,b;
    b=a++ + ++a;
    printf("%d,%d,%d,%d",b,a++,a,++a);
    }
    The output of this program is 22,13,13,13. But in the printf statement "a++" should print 11 instead of 13, "a" should print 10 instead of 13 and "++a" should print 11 instead of 13. That is what i can make from this program. Can anybody explain...
    See more | Go to post

  • jimhakans
    started a topic Autolt Error(plz help!)

    Autolt Error(plz help!)

    My antivirus shows this error when i log in to my computer
    "line0 (File"C;\WINDOW S\system32\SVIC HOSST.exe");
    If $odia[1]<>""then
    Error:Array variable has incorrect number of subscripts or subscript dimension range exceeded.
    My software alert me in every five min, which is very irritating. What should i do. plz help!
    See more | Go to post
No activity results to display
Show More
Working...