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() {...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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....
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#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...
-
#Threads
What is the effect of primitive data types on the nature of programming languages?
why the languages which are having primitive data types in them are considered to be not purely object oriented ,why is said...
-
#Threads
What is the reason for the logical equivalence between the predicates?
Just little confusion in the logical equivalence of the 2 below logical expressions: 1. (p->r) AND(q->r)= (p OR q)->r 2. (p->r) OR...
-
#Threads
03369593-2541-4f39-814c-bb7b152c5025
rahul69ADT is called data type because in behaviour, it is a data type, As using integer type we create integer variables, similarly...
-
#Threads
06161f33-e9b8-4926-be03-bad22fd90dac
Here is the pic ..
-
#Threads
be97f110-9356-4b1e-8179-9afd4c9a1f83
Anoop KumarI never learned about Abstract Data Type till now☕. Do you have confusion about following? <a href="https://docs.oracle.com/javase/tutorial/collect...
-
#Threads
66984fe7-6a81-4a6a-8985-af1bd8091e49
Please Can you be specific to my question ,I already know what an ADT is my question is something else ,please try...
-
#Threads
Abstract data type
I just have little confusions regarding the term abstract data type,although I have gone through google several times ,but still not yet...
-
#Threads
f9918d3b-8786-43bb-8f75-a90601cc20d6
Ankit LitoriyaTalk is cheap , show me the code. EDIT : To understand better. As much i guess time complexity for both...
-
#Threads
Comparison of algorithms
I just wanted to ask that why are the algorithms not being compared on the basis of number of statements they have...
-
#Threads
Scheduling algo in OS
I just wanted to ask that on a particular OS ,is the implementation of a scheduling algorithm unique,lets say I am implementing...
-
#Threads
Thread scheduling in java
I just want to ask that if the scheduling algorithm by JRE is priority scheduling since the threads are executed on the...
-
#Threads
Deadlock inside a system
Does the existence of only one condition which is CIRCULAR WAIT ,neccesarily implies that there exists deadlock within a system?
-
#Threads
time complexity of given algorithm
I am just uanble to compute the complexity of this algorithm,please help me out.
-
#Threads
cut-set of a graph
I just had one confusion regarding cut-set that the definition of cut-set says that it is the minimal set of edges whose...
-
#Threads
4d28b5e2-4a46-4516-aca7-98b9841f191d
Ankita KatdareSo, this is the question: Suppose each set is represented as a linked list with elements in arbitrary order. Which of...
-
#Threads
Linked list operation time
Please help me out with the following question,I am unable to actually make out the right option,I am able to make out...
-
#Threads
afcfeeb0-3f81-4e6c-b950-7b62e9e4d642
rahul69Actual process may differ for different IDE's but basic idea is the following. When we write code in IDE, it starts building...
-
#Threads
Line by line parsing of the statements written in an editor of an IDE
I just wanted to ask that during our typing on the editor of any IDE ,we are always prompted for errors whenever...
-
#Threads
Choose Better Performance
Which of these lines of code will give better performance? 1. a | 4 + c >> b & 7; 2. (a...
-
#Threads
Integer.toString(int) method VERSUS StringValueOf(int) in Java
why do we have two implementations in java for converting the integer value into string,what is the logic behind?
-
#Threads
3e73aaf9-9d05-4c6d-b830-4f10ac774edb
Anoop KumarWhen you do the new Object(). JVM loads the class file in memory and creates an Object. Now if object is...
-
#Threads
809b9864-57d6-4047-b619-25e3493fe435
Anoop KumarYou need to look for Stack and Heap concepts and how it works. A return value is not assigned to reference...
-
#Threads
62d85b9a-c567-4909-bb70-fc333ecb9eb2
Sanyam KhuranaCould you please elaborate your question may be by some code? I understood that concept ,actually constructor implicitly return datatype is...
-
#Threads
Return statement in a constructor
why is non-parametrized return statement allowed in a constructor call when actually the constructor never returns anything,not even void. what is the...