Topic — Add New » Posts Last Poster Freshness
verbal arithmetic 4 asm 5 days

also known as cryptarithmetic is a type of puzzle where you have to assign digits to alphabets such that no two alphabets get the same digits.only numbers from 0 -9 can be assigned.ex
send
+more=
money

values after solving are:
O = 0, M = 1, Y = 2, E = 5, N = 6, D = 7, R = 8, and S = 9

sequence points 3 Venki 1 week

int a=4,b=5;
int x=++a*++a*++a;
int y=++a*++b*++b;
printf("%d,%d",x,y);

Please explain each step??

Write a program to compute the Denis Series. 1 berobero 2 weeks

http://cl.ly/2r3y24080H1W0X0t2V1p

Output of C++ program? 10 saaru 2 weeks
int main()
{
   int i=0;
   do{
     cout << "geeksforgeeks";
     i = i++;
   }while( i < 5);

  getchar();
  return 0;
}
Output of C Program? 4 2 weeks
#include<stdio.h>
int main()
{
    int a, b=5;
    a = -b--;
    b = a---;
    printf("%d  %d",a,b);
}
A C programming question 2 Venki 3 weeks

What is the practical use of Union in C/C++?

Implemntation of Stack with other such arry, linked list ,etc? 1 Durar_7 3 weeks

Hello everyone,

Exesuse me i wanna some types of implement stak with other such binary search tree, linked list , arry , queue and so on , i wanna in pop and push and how it done the alogrthim ?

plz reply me so0on

unsigned and int gotcha 2 geek4u 3 weeks
         unsigned int b=2; int a=-2;

          if(a>b)
                 printf("a>b");
          else
              printf("b>a");

OUTPUT: a>b

         int b=2; int a=-2;

          if(a>b)
                 printf("a>b");
          else
              printf("b>a");

OUTPUT: b>a

PLEASE, someone explain the output

3D transformations 1 amanjha444 1 month

cube to trapezoid 3D transmormation matrix using shearing required !

c 1 ravida 1 month

c is high level language or low level ?
in some book , c is high and some middle ...
same problem is with java.

Amazon question 3 Venki 1 month
int main()
{
    if(fork())
    {
        fork();
        printf("child\n");
    }
    else
    {
        fork();
        fork();
        printf("parent\n");
    }
    return 0;
}

In the above program how many times ―"child" and ―"parent" would be printed respectively ....
Answer is 2 and 4 resp.......
I thought it was an infinite loop.....Explain the logic folks?

Reverse string word -wise 12 c@verma 1 month

people ,i am trying this with my code, but geting segmentation error.......help me out !!!!

#include<stdio.h>
#include<string.h>
main()
{
char arr[]="My name is khan";
int len,count,i,j,n;
char *ptr;
len=strlen(arr);
printf("string length is %d\n",len);
for(i=len-1;i>=0;i--)
{
	if(arr[i]==' ' || i==0)
	{
		ptr=&arr[i+1];
		while(*ptr!=' ' || *ptr!='')
		{
			printf("%c",*ptr);
			ptr++;
		}
	printf(" ");
	}
}
return(0);
}
c programm 3 Aashish Barnwal 1 month

1+x+x^2+x.........+x^n c programm for this output.

constructors in c++ 3 Aashish Barnwal 1 month

can a constructor be private in c++

[C++]Samsung Interview question 4 Aashish Barnwal 1 month

Can we override or overload a static member function at any point of time?

find the level of a node 2 camster 1 month

Hello guys, I have this assignment to create a function that returns the level of a node. I insert the letters of the word "procedure" in that order and the function should find and return the level of every character. This is what I have done so far but I don't get the result and I don't understand why. The function that I create is BSTLevel.

#include <stdio.h>
#include <stdlib.h>
typedef int BinTreeElementType;

typedef struct BinTreeNode *BinTreePointer;
struct BinTr...
C Questions 2 dileepkumar 2 months

In which header file is the NULL macro defined?