what is the benefit of c30
Answers were Sorted based on User's Feedback
How can you determine the size of an allocated portion of memory?
What is chain pointer in c?
Explain the difference between call by value and call by reference in c language?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
how can u print a message without using any library function in c
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
Write a code to determine the total number of stops an elevator would take to serve N number of people.
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Is it better to use malloc() or calloc()?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.