c program to print a name without using semicolon

Answer Posted / 080132

#include<stdio.h>
#include<conio.h>
void main{
if(printf("I am arafat from jstu")){


}
if(printf(" ")){


}
if(getch()){


}


}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the difference between 123 and 0123 in c?

949


What is a buffer in c?

760


What is the difference between arrays and pointers?

853


What are reserved words?

858


What is #include stdio h and #include conio h?

769


Explain union.

907


Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......

1969


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(); }

2072


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

991


What is the function of volatile in c language?

879


Write a program that accept anumber in words

1479


What do you mean by Recursion Function?

870


How can you be sure that a program follows the ANSI C standard?

1382


What are the storage classes in C?

827


Can we change the value of static variable in c?

762