Why c is a procedural language?
No Answer is Posted For this Question
Be the First to Post Answer
Do pointers need to be initialized?
number of times a digit is present in a number
Write the syntax and purpose of a switch statement in C.
What are the __date__ and __time__ preprocessor commands?
What is the difference between new and malloc functions?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
Explain how do you list a file’s date and time?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
what is the difference between unix os and linux os
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.