radha gogia
Member
Member since
Aug 28, 2014
Last active
Jul 16, 2016
Posts contributed
160
Recent posts
-
@radha-BTDzli • Oct 26, 2024Oct 26, 20241.8K
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",&n); fflush(stdin); scanf("%d",&m);... -
@radha-BTDzli • Oct 26, 2024Oct 26, 20241.4K
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 to pdf,... -
@radha-BTDzli • Oct 26, 2024Oct 26, 20242.7K
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 I print this the value at... -
@radha-BTDzli • Oct 26, 2024Oct 26, 20241.5K
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 am not... -
@radha-BTDzli • Oct 26, 2024Oct 26, 20241.4K
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 it must... -
@radha-BTDzli • Oct 26, 2024Oct 26, 20241.6K
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 token, but...