write a c program thal will find all sequences of length N
that produce the sum is Zero, print all possible solutions?
No Answer is Posted For this Question
Be the First to Post Answer
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
When is a void pointer used?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What is stack in c?
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
what is a constant pointer in C
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
64/square(4)
Explain about C function prototype?
Why n++ execute faster than n+1 ?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that