What is the use of header files?
No Answer is Posted For this Question
Be the First to Post Answer
What is a newline escape sequence?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
What is the acronym for ansi?
What is the condition that is applied with ?: Operator?
What is the difference between array_name and &array_name?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
Explain do array subscripts always start with zero?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
What are dangling pointers?
Explain main function in c?
Which of these functions is safer to use : fgets(), gets()? Why?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above