What is the use of ?: Operator?
No Answer is Posted For this Question
Be the First to Post Answer
print the palindrome numbers in between 0 to n
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
Is c procedural or object oriented?
Ow can I insert or delete a line (or record) in the middle of a file?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What does the message "warning: macro replacement within a string literal" mean?
What is the maximum length of an identifier?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
What is #include called?
What is echo in c programming?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort