About 23 results
Open links in new tab
  1. How to convert string to int without using library functions in c

    C language interview questions solution for freshers beginners placement tricky good pointers answers explanation operators data types arrays structures functions recursion preprocessors …

  2. Program to find fibonacci series in java

    Conversion of binary number to decimal number using java programming language Decimal to binaryconversionin java Check leap year in java Factorial program in java Multiplication tables …

  3. Prime number program in c using recursion

    C programming Interview questions and answers: Prime number program in c using recursion

  4. Conversion of binary number to decimal number using java …

    Swapping two variables without using third variable in java LCM of two numbers in java Palindrome program in java Sum of digits of a number in java Prime number program in java …

  5. C programming Interview questions and answers: Prime factors of …

    Swapping two variables without using third variable in java LCM of two numbers in java Palindrome program in java Sum of digits of a number in java Prime number program in java …

  6. MULTIPLICATION OF TWO MATRICES USING C PROGRAM

    C language tricky pointers questions answers explanation objective mcq faq interview freshers beginners prime numbers factorial PDF examples

  7. C programming Interview questions and answers: 08/01/2010

    C language tricky pointers questions answers explanation objective mcq faq interview freshers beginners prime numbers factorial PDF examples

  8. C programming Interview questions and answers: c language

    c language (10)Identify the true statement (a)Memory allocated by an array can be deallocated using free () function (b)C also supports zero length array (c)Array can be used to hold …

  9. C program to find out the sum of infinite G.P. series: geometric ...

    Sum of infinite GP series in c programming language

  10. Find out size of any union using pointer? - cquestions.com

    Find out size of any union using pointer? Answer: unionABC { int a; float b; char c; }; voidmain() { union ABC *ptr= (union ABC *)0; ptr++; printf ("Size of union is: %d",*ptr); } Explanation: Read …