radha gogia
Member
- Member since
- Aug 28, 2014
- Last active
- Jul 16, 2016
- Total activities
- 0
Activity feed
Recent contributions
-
#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"...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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() {...