Forum: C Aug 1st, 2008 |
| Replies: 9 Views: 10,806 i think you can use a Count variable and count the number of elements using a loop and print it. then also you can see.. |
Forum: C May 26th, 2008 |
| Replies: 7 Views: 897 thanks my bad. in my coding i have put if(y<=1) it should be ( y<1) only . no equal sign.
thanks guys. thanks for the quick reply |
Forum: C May 26th, 2008 |
| Replies: 7 Views: 897 Teacher gave a question today to find Base is 2 and power is 3. so that Answer should be 8. so to find that she told us to use Recursion and do it. i done it in the normal way. but when i do it in... |
Forum: C May 24th, 2008 |
| Replies: 12 Views: 1,756 im so sorry about it. i just copied and paste it. im still a noob |
Forum: C May 23rd, 2008 |
| Replies: 3 Views: 698 check the names are correct.. the library names.. check it correctly |
Forum: C May 23rd, 2008 |
| Replies: 12 Views: 1,756 here is the Code
#include<stdio.h>
main()
{
int x,y,ans=1;
printf("Enter Your Number:"); |
Forum: C May 23rd, 2008 |
| Replies: 12 Views: 1,756 wait let me do it and put the code in here |
Forum: C May 23rd, 2008 |
| Replies: 20 Views: 1,858 as far as i feel that we need both Variables. but depend on the Situation u can use global variables. but mostly i prefered to go with local variables. but if u feel that u badly want one ore two... |
Forum: C May 23rd, 2008 |
| Replies: 14 Views: 2,328 interesting thoughts... my group member used this Malloc Function, malloc and Alloc for a project... |