radha gogia

radha gogia

Member

Member since
Aug 28, 2014
Last active
Jul 16, 2016
Total activities
0

Activity feed

Recent contributions

  1. #Threads

    what is error in below code ?

    #include <stdio.h> #include<malloc.h> struct node { int data ; struct node *next,*prev; }; int main() { int n ,m,a,count=0,i,j; char rot; scanf("%d"...

  2. #Threads

    a23f0bdc-7b83-4727-9a59-ed2e9c7ddadb

    what are the qualifications ? I mean will freshers work ?And what is the technology for which they are looking for and...

  3. #Threads

    Desktop application in java for format conversion of all basic type of files.

    I am writing a desktop application in java which is for format conversion of all basic type of files. For e.g. word...

  4. #Threads

    Why do we get a segmentation fault while performing any operation on an uninitialized pointer ?

    [HASHTAG]#include[/HASHTAG]<stdlib.h> [HASHTAG]#include[/HASHTAG]<string.h> int main(void) { char *p ; strcat(p, "abc"); printf("\n %s \n", p); return 0; } If...

  5. #Threads

    How to construct PDA for the given language?

    I am facing problem while constructing PDA for the language where we have no of a's =twice no of b's . I...

  6. #Threads

    Who compiles the compiler ?

    I have one doubt regarding when a compiler is used for compiling the program code written in some particular programming language then...

  7. #Threads

    what does a token actually represent?

    Please explain the below paragraph "Typically with a lexer/parser a token is a structure that holds not only the name of the...

  8. #Threads

    How does the white-spaces affect the size of the two notepad files

    Consider two files ,one has very less spaces between the text written on it,while one which has a lot of spaces between...

  9. #Threads

    f559666f-3347-455f-9512-3c0e9788a64a

    Sir ,Actually I have one con simplycoderNice question, however, there is a typo in your snippet. The code should probably be #include...

  10. #Threads

    4d08e205-ae00-4a3b-b66e-fb55a7865ace

    Sir ,Actually I have one con simplycoderNice question, however, there is a typo in your snippet. The code should probably be #include...

  11. #Threads

    aeb3ca12-e108-43b5-bf16-19df6859a37a

    Sir ,Actually I have one con simplycoderNice question, however, there is a typo in your snippet. The code should probably be #include...

  12. #Threads

    Variation in the working of the comma operator in the below codes

    Consider the following code snippets Case1: int main() { int a; a=printf("hello"),printf("joke"); printf("%d",a); return 0; } Case2: int main() {...

  13. #Threads

    45738e69-e206-4921-a3a6-6b8dc6e486ba

    Ankita KatdareYour answer lies in this statement that you wrote. The output of your program will completely depend on your compiler. For...

  14. #Threads

    How does the comma acts here as an operator or as a separator?

    plz explain the working of below code ,here why both the printf functions are getting executed when comma is here acting like...

  15. #Threads

    Working of printf statement in C

    I am just confused with the working of the printf statement that which one evaluate first because I have studied that comma...

  16. #Threads

    824a0329-08a2-4e2f-a956-92fa352883b6

    For example I write case 1: int a=9; break; printf("hellooo"); case 2 : int y =98; printf("kill"); break; So here when parsing...

  17. #Threads

    Working of switch construct in c programming

    In a switch construct ,why does the compiler doesn't show any error and skips the statements written within the cases like for...

  18. #Threads

    what is the logical proof of the below formula for relation?

    If I have three relations R1.R2,R3 ,then If I write the formula as 1. (R1^R2)R3 contained in (R1 R3 ^ R2^R3) 2....

  19. #Threads

    d69c4d0c-58da-4d4f-a4f0-658f31f531f4

    Ankita KatdareIs this a question related to mathematics graph theory? If so, I need to move it to appropriate section.yes Mam,it is...

  20. #Threads

    How does the compiler in c stores the const variables in ROM

    I am just unable to understand that when ROM is only read only memory ,then how is the compiler able to store...

  21. #Threads

    f61832fc-7aec-4ea9-a633-8f1be0aa5cdb

    actually am trying to ask like if we ay that G1 union G2 is actually the union of vertices and union of...

  22. #Threads

    How to perform XOR operation on two graphs?

    I am just unable to find out how to perform XOR operation on two graphs ,do I have to do XOR operation...

  23. #Threads

    Effect of one control specification on another in printf statement.

    CASE A : #include<stdio.h> #include<conio.h> int main() { int y = (8,9); printf("%d ,%f , %lf", 8.76, 8.987654); getch(); return 0; }CASE...

  24. #Threads

    Is there a unique compiler for C with UNIX as an operating system?

    If the UNIX, when is allowed to run on another machine then it needs c compiler for it ,so when we install...