Write a c program to build a heap method using Pointer to
function and pointer to structure ?
No Answer is Posted For this Question
Be the First to Post Answer
Why doesnt that code work?
what is the use of macro program
WAP to convert text into its ASCII Code and also write a function to decode the text given?
What is the OOPs concept?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
Where local variables are stored in c?
What is the difference between fork() and vfork()?
How many loops are there in c?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,