Answer Posted / love agarwal
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hello");
getch();
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Can you mix old-style and new-style function syntax?
How do you define structure?
write a program to rearrange the array such way that all even elements should come first and next come odd
When we use void main and int main?
Are the variables argc and argv are always local to main?
Can you define which header file to include at compile time?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What is string length in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
the question is that what you have been doing all these periods (one year gap)
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Why do we use null pointer?
Why do we need arrays in c?
What is the size of a union variable?