pradeep_agrawal
Member
- Member since
- May 3, 2006
- Last active
- Sep 3, 2013
- Total activities
- 0
Activity feed
Recent contributions
-
#Threads
44dba7f7-e319-4a88-be72-5d0b298fbe1a
Currently IEEE-754 is being used as standard for storing decimal numbers (or rather say float point numbers) in memory. Refer <a href="https://en.wikipedia.org/...
-
#Threads
b5dedad8-7bac-4e26-895f-47309a9218aa
Based on ANSI C specification, if the argument passed to free does not matches with value returned by malloc/calloc/realloc, or if the...
-
#Threads
48580f03-0d0f-4278-88a1-44925fd19cdb
For making strong base, instead of Balaguruswamy or Let Us C++, I would recommend Thinking in C++ (Vol.1 and Vol. 2) by...
-
#Threads
bca57780-8486-41cd-b849-ab42b991f9db
Find below my piece of code for same. #include "stdio.h" int main() { int choice = 0; int sum = 0; while(sum...
-
#Threads
1a0b7717-7197-4bfb-8fd0-6f8f89949233
In C a variable of type char can also hold a -ve value and the range is from -128 to 127. So...
-
#Threads
2a79865b-72ea-44aa-a6bb-df41e8421b05
Below is my code for the given problem statement solved using recursion. #include "stdio.h" void function(int m, int n, int* loopIndexes) {...
-
#Threads
a0decda1-3bba-4821-a79c-c043a4433cf6
Refer the below post in which i have used doubly linked list as a stack. By looking into the code you should...
-
#Threads
69f947f3-3ab3-4177-9a2c-27967cde549d
Re: help in a program samairacan anyone give me the program for linked list with the foll conditions: 1.first node is created...
-
#Threads
08ca28dd-b970-48eb-8d79-b8d5f1379e59
sookie@Pradeep Regarding limitations pointed out by you - Brackets & precedence : good thing, I will see if I can add that...
-
#Threads
2cb427ff-43e2-4243-9cd9-1edd1bafa2d9
sookieHere goes my program in Java. Please check and review for improvements if it is failing for any expressions. I am very...
-
#Threads
0ab76bea-597f-43d2-9fca-964175b253d9
The above code works as per the given problem statement but have below limitations: 1. Does not give suitable output/error for invalid...
-
#Threads
9128821c-472a-4a0b-bac9-d72a8a8ccd58
Find below my sample code for given problem statement. #include "stdio.h" #define MAX_EXPRESSION_SIZE 400 typedef enum { OPERAND = 0, OPERATOR, BRACKET,...