Answer Posted / shabeer v c
#include<stdio.h>
void main()
{
printf(" \"hai"\ ");
getch();
}
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
How do you initialize pointer variables?
Is anything faster than c?
How many keywords (reserve words) are in c?
What is a built-in function in C?
Can math operations be performed on a void pointer?
What are the different types of objects used in c?
Describe wild pointers in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
How can I remove the leading spaces from a string?
What is the most efficient way to count the number of bits which are set in an integer?
Is there a way to jump out of a function or functions?
What is the use of typedef in structure in c?
Why we use int main and void main?
how to find anagram without using string functions using only loops in c programming
Why cant I open a file by its explicit path?