What is this infamous null pointer, anyway?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to show the change in position of a cursor using c
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
given post order,in order construct the corresponding binary tree
What does == mean in texting?
Function to find the given number is a power of 2 or not?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
Explain what will the preprocessor do for a program?
Write a program in c to replace any vowel in a string with z?