how to print "hai" in c?
Answers were Sorted based on User's Feedback
Answer / shabeer v c
#include<stdio.h>
void main()
{
printf(" \"hai"\ ");
getch();
}
| Is This Answer Correct ? | 0 Yes | 5 No |
#include<stdio.h>
#include<conio.h>
void main()
{
printf("hai");
getch();
}
| Is This Answer Correct ? | 1 Yes | 7 No |
Without using main fn and semicolon,print remainder for a given number in C language
There seem to be a few missing operators ..
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
How can you tell whether a program was compiled using c versus c++?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
who is the father of C Language?
20 Answers CTS, UST,
What does static mean in c?
what's the return value of malloc()
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
What is indirection? How many levels of pointers can you have?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
write a program to generate address labels using structures?