Search:

Type: Posts; User: Amitesh93

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,982

    Well actually i am completely new to this topic...

    Well actually i am completely new to this topic so fiddling with man pages and google would be fine if i have a certain base on the topic thatswhy i was asking, i would like to kickstart with linux...
  2. Replies
    3
    Views
    1,982

    Inter process communication

    Guys i want your help in getting around good tutorials/books to learn how i can make two separate applications/programs communicate with each other? one more thing is this type of communication...
  3. well i do can simplify the if statements if you...

    well i do can simplify the if statements if you want for clarity and knoing wat i am doing




    well adak its not about simplifying my code using only recursion and solvinh TOH i do kno how to do...
  4. Well i dint catch ur point about strlen and rest...

    Well i dint catch ur point about strlen and rest about stack operations i am actually also trying itto be recursive . What my motto was to divede TOH operations in 6 conditions nd chek aftr each...
  5. Tower of hanoi via recursion and stack combined using array error!!

    guys i am trying to make the tower of hanoi problems solution using recursion and stacks i did created a logic but there seems some great blunder , while the syntax is correct with no errors but the...
  6. Replies
    6
    Views
    1,135

    writting explicitly means to write it fully in...

    writting explicitly means to write it fully in the code and it not being an implicit declaration.



    for(i=0;i<=4;i++) {
    scanf("%c%d%",&s[i].name,&s[i].rollno);

    ...
  7. Replies
    6
    Views
    1,135

    %c is for char you are scanning an array/string...

    %c is for char you are scanning an array/string so use %s same for printf plus there is no need for three % symbol in scanf and printf.
  8. Replies
    8
    Views
    2,169

    i think i was not able to put my question in a...

    i think i was not able to put my question in a proper way , what i asked above was the approach you will use to make a certain screen output stream pointer or any function which will allow us to...
  9. Replies
    8
    Views
    2,169

    its not os specific question that i am asking...

    its not os specific question that i am asking lets say i give you a task to make a *stdout type of pointer which gives us an output stream to the scree how are you going to approach it lets say for...
  10. Replies
    8
    Views
    2,169

    that i got that the file descriptor for output...

    that i got that the file descriptor for output stream is 1 but how is this approached by a system , is it embedded in the os or can i also make an output stream pointer/descriptor.?
  11. Replies
    8
    Views
    2,169

    stdout,stdin,stderr querry

    Well i was going through the library files of standard input and output file to actually know the process followed for defining the output and input stream , i did got a definition of stdout and...
  12. A really strange questions please look into it.

    Actually i am working on my c and also upgrading to c++ but while coding i really dont feel satisfied , as for the texts i read to improve my grasp on these languages i feel a blank hole in my mind...
  13. Replies
    49
    Views
    9,708

    isn't valgrind for linux only as using code...

    isn't valgrind for linux only as using code blocks on windows how will i use valgrind?
  14. Replies
    49
    Views
    9,708

    k!=NULL should be k->next!=NULL then the prog is...

    k!=NULL should be k->next!=NULL then the prog is working fine.
    *can you tell me how to check memory leaks can the compiler tell us or we need to self asses the program i do understand the memory...
  15. Replies
    49
    Views
    9,708

    @pappu on using the abuv edition the program...

    @pappu on using the abuv edition the program stops working after printing the number(*it crashes)
  16. Replies
    49
    Views
    9,708

    @laser light hmmm... i'll edit it thanx :)

    @laser light hmmm... i'll edit it thanx :)
  17. Replies
    49
    Views
    9,708

    @all who have helped me the program has been...

    @all who have helped me the program has been solved perfectly, uploading the final code working like a charm thanks all, the last and prior errors can be clarified by the code.
    ...
  18. Replies
    49
    Views
    9,708

    **if i am using != in print i am getting an...

    **if i am using != in print i am getting an infinite loop print of my first value entered.
  19. Replies
    49
    Views
    9,708

    @pappu hmm u r correct dude @laserlight will goto...

    @pappu hmm u r correct dude @laserlight will goto create a kind of error *why to remove malloc.h?
    plus this is my current out put *(not able to print the values)
  20. Replies
    49
    Views
    9,708

    my new code looks like this...

    my new code looks like this
    #include<stdio.h>#include<strings.h>
    #include<stdlib.h>
    #include<malloc.h>


    struct node
    {
    int data;
    struct node *next;
  21. Replies
    49
    Views
    9,708

    @pappu i actually corected the == to != operator...

    @pappu i actually corected the == to != operator it was just for testng dat i did but @ line 57 do u want me to use ==
  22. Replies
    49
    Views
    9,708

    okay got your point jim corrected it by a malloc.

    okay got your point jim corrected it by a malloc.
  23. Replies
    49
    Views
    9,708

    @jim can you explain with an example

    @jim can you explain with an example
  24. Replies
    49
    Views
    9,708

    okay okay please correct me is *trys not an...

    okay okay please correct me is *trys not an initialisation for trys as it is for k in the link datatype and how will i initialise an address as trys is actually an address.
  25. Replies
    49
    Views
    9,708

    @jim #include#include...

    @jim

    #include<stdio.h>#include<strings.h>
    #include<stdlib.h>
    #include<malloc.h>


    struct node
    {
    int data;
Results 1 to 25 of 41
Page 1 of 2 1 2