R
Q. Which of the following functions display “Hello, World!” on the screen in console mode?
printf function allow us to display a text on the screen in console mode. Example: #include <stdio.h> int main() { printf("Hello, World!"); return 0; }
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The statement print f ("%d", 10 ? 0 ? 5 : 1 : 12); will print?
Q. Which of the following is not a data type in c
Q. The correct way to round off a floating number x to an integer value is
Q. Which of the following function gives the current position in the file
Q. The _______ memory allocation function modifies the previous allocated space.
Q. What is the ASCII value of NULL or \0?
Q. What is the output of C program?
Discusssion
Login to discuss.