how can i print "hello"
Answers were Sorted based on User's Feedback
#include<stdio.h>
main()
{
printf("hello");
}
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / ajithbalaji
Both r wrong
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\"hello\"");
getch();
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / vijay kumar tiwari
#include<iostream.h>
main()
{
cout<<"hello";
}
| Is This Answer Correct ? | 3 Yes | 4 No |
Is there any demerits of using pointer?
wat s the meaning of (int *)p +4;
What is spaghetti programming?
Why can't I perform arithmetic on a void* pointer?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Why malloc is faster than calloc?
write a program to add two numbers of any size.....(remember any size)
Explain command-line arguments in C.
What is a newline escape sequence?
What is 'bus error'?