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...