Answer Posted / shabeer v c
#include<stdio.h>
#include<conio.h>
void main()
{
printf(" \"hai");
printf(" \" ");
getch();
}
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
I came across some code that puts a (void) cast before each call to printf. Why?
What is default value of global variable in c?
Explain function?
Do you know the difference between exit() and _exit() function in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What functions are in conio h?
What is an auto keyword in c?
Can you subtract pointers from each other? Why would you?
Compare and contrast compilers from interpreters.
Simplify the program segment if X = B then C ← true else C ← false
Can you add pointers together? Why would you?
Explain about C function prototype?
What is #include stdio h and #include conio h?
How can I manipulate strings of multibyte characters?