Answer Posted / satya.babi
computing language
| Is This Answer Correct ? | 28 Yes | 7 No |
Post New Answer View All Answers
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
How do you use a pointer to a function?
What is string concatenation in c?
what do the 'c' and 'v' in argc and argv stand for?
What is difference between class and structure?
What is the full form of getch?
Explain the difference between the local variable and global variable in c?
What is volatile variable in c?
Explain built-in function?
Does c have an equivalent to pascals with statement?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is an operator?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Can a variable be both const and volatile?