Podcast Beta
Questions and Answers
Explain the difference between 'while' and 'do-while' loops in C programming.
The 'while' loop checks the condition before executing the code, while the 'do-while' loop executes the code at least once before checking the condition.
What is the purpose of the 'scanf' function in C programming?
To read input from the user
What is the purpose of the 'printf' function in C programming?
To display output on the screen
What are the advantages and disadvantages of using pointers in C programming?
Signup and view all the answers
Explain the concept of 'pass by reference' and 'pass by value' in C programming.
Signup and view all the answers
Discuss the use of 'static' keyword in C programming and provide an example.
Signup and view all the answers