Answer Posted / rama krishna sidhartha
the variable ram is undeclared,
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is else if ladder?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is the explanation for cyclic nature of data types in c?
What is table lookup in c?
What is a program flowchart and how does it help in writing a program?
Can you return null in c?
For what purpose null pointer used?
How do c compilers work?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
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
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What are qualifiers and modifiers c?
What type is sizeof?