What is a null string in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does the c preprocessor do?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What is c language and why we use it?
Describe the order of precedence with regards to operators in C.
Are there namespaces in c?
What is huge pointer in c?
Why void main is used in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is identifiers in c with examples?
Who developed c language and when?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Differentiate between a for loop and a while loop? What are it uses?