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