Answer Posted / harish[nttf]
#include<stdio.h>
void main()
{
printf("\"HAI""\"");
getch();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is the difference between array_name and &array_name?
Differentiate between the = symbol and == symbol?
What is the difference between struct and union in C?
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
What are the types of i/o functions?
Why c is called free form language?
Write a program to swap two numbers without using third variable?
What is the scope of an external variable in c?
Explain what is the general form of a c program?
What is a pointer and how it is initialized?
What is variable declaration and definition in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What header files do I need in order to define the standard library functions I use?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Write a progarm to find the length of string using switch case?