What are the general description for loop statement and available loop types in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
how to do in place reversal of a linked list(singly or doubly)?
What is the general form of #line preprocessor?
Write a code to generate divisors of an integer?
How can I implement a delay, or time a users response, with sub-second resolution?
why ordinary variable store the later value not the initial
how to find anagram without using string functions using only loops in c programming
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
Which programming language is best for getting job 2020?
what is the format specifier for printing a pointer value?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Meaning of () in c