what is the full form of c language
Answer Posted / amk
combit language
| Is This Answer Correct ? | 3 Yes | 9 No |
Post New Answer View All Answers
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
How can I ensure that integer arithmetic doesnt overflow?
How can I get the current date or time of day in a c program?
Explain how do you view the path?
What are global variables?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is the concatenation operator?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is define 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
cavium networks written test pattern ..
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
explain what is an endless loop?
Can static variables be declared in a header file?