How can I sort a linked list?
No Answer is Posted For this Question
Be the First to Post Answer
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
How can I run c program?
Are the expressions * ptr ++ and ++ * ptr same?
In a header file whether functions are declared or defined?
What is the difference between malloc calloc and realloc in c?
what is diffrence between string and character array?
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 implement stack operation using singly linked list
Can variables be declared anywhere in c?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?