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
what is the difference between 123 and 0123 in c?
What is a buffer in c?
What is the difference between arrays and pointers?
What are reserved words?
What is #include stdio h and #include conio h?
Explain union.
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
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(); }
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is the function of volatile in c language?
Write a program that accept anumber in words
What do you mean by Recursion Function?
How can you be sure that a program follows the ANSI C standard?
What are the storage classes in C?
Can we change the value of static variable in c?