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 |
What is function prototype in c with example?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Why can arithmetic operations not be performed on void pointers?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
Explain what is the most efficient way to store flag values?
What is pre-emptive data structure and explain it with example?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
What are different types of variables in c?
What does. int *x[](); means ?
How can I access an I o board directly?