Answer Posted / harisharumalla
printf("\"hai"\");
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
Is Exception handling possible in c language?
Explain what math functions are available for integers? For floating point?
What is meant by initialization and how we initialize a variable?
What is an example of structure?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Explain what is wrong with this statement? Myname = ?robin?;
What is %d called in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What the advantages of using Unions?
which is an algorithm for sorting in a growing Lexicographic order
in iso what are the common technological language?
What is the g value paradox?
What is the use of sizeof?
What is the condition that is applied with ?: Operator?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25