c program to print a name without using semicolon

Answer Posted / rajesh dixit

#include<stdio.h>
#include<coio.h>
void main()
{
if(printf("rajesh dixit"))
{
}
getch();
}

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a const pointer in c?

901


How do we print only part of a string in c?

840


Is fortran still used in 2018?

827


Why use int main instead of void main?

886


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

2017


What is d scanf?

824


What are the types of data types and explain?

886


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

23164


What is difference between function overloading and operator overloading?

897


Write a c program to build a heap method using Pointer to function and pointer to structure ?

4440


write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

15523


Is main is user defined function?

894


What is a newline escape sequence?

893


What is the advantage of c?

831


Explain how can I convert a string to a number?

882