Answer Posted / maskfriend
#include<stdio.h>
#include<conio.h>
void main()
{
printf("hai");
getch();
}
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What happens if you free a pointer twice?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
How can I get random integers in a certain range?
What is the function of this pointer?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
How do you print only part of a string?
How can I do serial ("comm") port I/O?
Is c is a high level language?
Write a c program to demonstrate character and string constants?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Is r written in c?
Is array a primitive data type in c?
What is a rvalue?
Explain what is wrong with this statement? Myname = ?robin?;
Do you have any idea about the use of "auto" keyword?