wap to print "hello world" without using the main function.
Answers were Sorted based on User's Feedback
Answer / raghuram
To display "hello world"
printf("\"hello world\"");
| Is This Answer Correct ? | 5 Yes | 57 No |
Answer / guest
#include<stdio.h>
#include<conio.h>
printf("hello world");
| Is This Answer Correct ? | 3 Yes | 62 No |
What do header files do?
What is the correct code to have following output in c using nested for loop?
What are static variables in c?
List the difference between a "copy constructor" and a "assignment operator"?
What is anagram in c?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
nic scientist exam
How do you determine whether to use a stream function or a low-level function?
What does p mean in physics?
What is %d used for?
Why c is called object oriented language?