how to write hello word without using semicolon at the end?
Answers were Sorted based on User's Feedback
#include<stdio.h>
void main()
{
if(printf("hello world"))
{
}
}
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / jithneder palle
int main(void)
{
if(printf("hello world"))
}
Is This Answer Correct ? | 9 Yes | 2 No |
Answer / rajveer singh rana
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hello world"))
getch();
}
Is This Answer Correct ? | 1 Yes | 0 No |
#include<stdio.h>
int main(void)
{
if(printf("hello world"));
return 0;
}
Is This Answer Correct ? | 4 Yes | 4 No |
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
Explain what is a static function?
Explain how does free() know explain how much memory to release?
What is #include stdio h?
Will Macros support multiple arguments ?
What extern c means?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Explain null pointer.
what is the significance of static storage class specifier?
void main() { int i=5; printf("%d",i+++++i); }
what is the difference between char * const and const char *?