Answer Posted / livhuwani netswera
The c language is considered a procedural langeage
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
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
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What are the back slash character constants or escape sequence charactersavailable in c?
What is the difference between char array and char pointer?
What is pass by reference in functions?
how to create duplicate link list using C???
using for loop sum 2 number of any 4 digit number in c language
why programs in c are running with out #include
Differentiate between a for loop and a while loop? What are it uses?
Can a variable be both static and volatile in c?
What are preprocessor directives in c?
What are the three constants used in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is unsigned int in c?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list