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 does %f mean c?
What Is The Difference Between Null And Void Pointer?
What are valid operations on pointers?
What is a const pointer in c?
all c language question
Do array subscripts always start with zero?
What is a string?
What is the purpose of main() function?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
What is time complexity c?
What is variable declaration and definition in c?
Write a code on reverse string and its complexity.