What are the general description for loop statement and available loop types in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

0 Answers  


how to do in place reversal of a linked list(singly or doubly)?

3 Answers  


What is the general form of #line preprocessor?

0 Answers  


Write a code to generate divisors of an integer?

0 Answers   Ericsson,


How can I implement a delay, or time a users response, with sub-second resolution?

0 Answers  


why ordinary variable store the later value not the initial

1 Answers  


how to find anagram without using string functions using only loops in c programming

0 Answers  


write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?

3 Answers   Oracle,


Which programming language is best for getting job 2020?

0 Answers  


what is the format specifier for printing a pointer value?

0 Answers  


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); }

4 Answers   Vector,


Meaning of () in c

1 Answers  


Categories