how to add numbers without using arithmetic operators.
Answer Posted / mokka samy
use the variable u can get it
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
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 are header files in c?
What is pass by reference in c?
What are volatile variables in c?
How do c compilers work?
How does normalization of huge pointer works?
What are 3 types of structures?
What is the use of extern in c?
Describe newline escape sequence with a sample program?
What are logical errors and how does it differ from syntax errors?
Do string constants represent numerical values?
Why do some versions of toupper act strangely if given an upper-case letter?
What do you understand by normalization of pointers?
Is register a keyword in c?