- Home
- Quantitative
- English
- Reasoning
- IT Officer
- Programming
-
Computer
- Computer Awareness Questions Answers - Set 1
- Computer Awareness Questions Answers - Set 2
- Important Abbreviations Computer Awareness Questions Answers
- Important File Extensions Questions Answers
- Computer System Architecture Questions Answers
- MS Office Questions Answers
- MS Excel Questions Answers
- MS PowerPoint Questions Answers
-
GK
- Geography Questions Answers
- Indian History Questions Answers
- World History Questions Answers
- Indian Economy Questions Answers
- Indian Polity and Constitution
- Physics Questions Answers
- Chemistry Questions Answers
- Biology Questions Answers
- First In India
- First In World
- Longest and Largest
- Books and Authors
- Important Days of year
- Countries and Capitals
- Inventions and Inventors
-
Current Affairs
- Current Affairs
- Current Affairs 2018
- Current Affairs 2018 - 2019 PDF
- Current Affairs August 2019
- Current Affairs July 2019
- Current Affairs June 2019
- Current Affairs May 2019
- Current Affairs April 2019
- Current Affairs March 2019
- Current Affairs February 2019
- Current Affairs January 2019
- Current Affairs December 2018
- Current Affairs November 2018
- Current Affairs October 2018
- Current Affairs September 2018
- Govt Jobs
- Exams
- Online Quiz
- You are here
- Home
- Programming Aptitude
- C Programming Questions Answers
- C Programming Questions Answers - Chapter 1
- Aptitude Question
- Current Affairs 2019
- Current Affairs 2018
- Current Affairs December 2018
- Current Affairs November 2018
- Current Affairs October 2018
- Current Affairs September 2018
- Current Affairs August 2018
- Current Affairs July 2018
- Current Affairs June 2018
- Current Affairs May 2018
- Current Affairs April 2018
- Current Affairs March 2018
- Current Affairs February 2018
- Current Affairs January 2018
- Current Affairs 2018
- Current Affairs PDF
- Current Affairs PDF Download
- Current Affairs July 2019 PDF
- Current Affairs June 2019 PDF
- Current Affairs May 2019 PDF
- Current Affairs April 2019 PDF
- Current Affairs March 2019 PDF
- Current Affairs February 2019 PDF
- Current Affairs January 2019 PDF
- Current Affairs December 2018 PDF
- Current Affairs November 2018 PDF
- Current Affairs October 2018 PDF
- Current Affairs September 2018 PDF
- Current Affairs August 2018 PDF
- Current Affairs July 2018 PDF
- Current Affairs June 2018 PDF
- Current Affairs May 2018 PDF
- Current Affairs April 2018 PDF
- Current Affairs March 2018 PDF
- Current Affairs February 2018 PDF
- Current Affairs January 2018 PDF
Question Detail
Continue statement used for
- To continue to the next line of code
- To stop the current iteration and begin the next iteration from the beginning
- To handle run time error
- None of above
Answer: Option B
1. Difference between calloc() and malloc()
- calloc() takes a single argument while malloc() needs two arguments
- malloc() takes a single argument while calloc() needs two arguments
- malloc() initializes the allocated memory to ZERO
- calloc() initializes the allocated memory to NULL
Answer: Option B
2. Break statement is used for
- Quit a program
- Quit the current iteration
- Both of above
- None of above
Answer: Option B
3. Which of the following below is/are valid C keywords
- integer
- int
- null
- none of above
Answer: Option B
4. Wild pointer in C
- if pointer is pointing to a memory location from where variable has been deleted
- if pointer has not been initialized
- if pointer has not defined properly
- if pointer pointing to more than one variable
Answer: Option B
5. Disadvantage of array in C is
- We can easily access each element
- It is necessary to declare too many variables
- It can store only one similar type of data
- None of above
Answer: Option C
Thanks ! Your comment will be approved shortly !
-
ramtejakongari 9 years ago
continue means stopping the current inst and goes to next one?
if any one have clear in this issue plz show me the right direction?
////??mastguru 9 years ago replied
say you have a loop running 10 times and you want when its 5th time you do not want to implement some logic then you can write "continue", it will skip when i==5, and will again run for i==6 But in case you want to stop and execute next then you will use "break" instead of Continue. Hope it helps
- Copyright 2014 - All rights reserved
- Terms Of Use & Privacy Policy
- Contact Us
- Copyright