what is a NULL Pointer? Whether it is same as an uninitialized pointer?
No Answer is Posted For this Question
Be the First to Post Answer
write a program of palindrome(madam=madam) using pointer?
What is the difference between ++a and a++?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
How we can insert comments in a c program?
Can we increase size of array in c?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
Convert the following expression to postfix and prefix (A+B) * (D-C)
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is a macro?