What are conditional operators in C?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is pointer ?

10 Answers   Kernex Micro Systems,


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

0 Answers  


where are auto variables stored? What are the characteristics of an auto variable?

0 Answers  


What are the 32 keywords in c?

0 Answers  


there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?

1 Answers  


how to determine the complexity of an algorithm as log(n)

1 Answers   Google,


what is const volatile?

2 Answers  


How do I round numbers?

0 Answers  


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

0 Answers  


plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .

3 Answers  


Is malloc memset faster than calloc?

0 Answers  


Why doesn't the code "a[i] = i++;" work?

4 Answers  


Categories