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
What is a const pointer in c?
How do we print only part of a string in c?
Is fortran still used in 2018?
Why use int main instead of void main?
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
What is d scanf?
What are the types of data types and explain?
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!+....
What is difference between function overloading and operator overloading?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
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.
Is main is user defined function?
What is a newline escape sequence?
What is the advantage of c?
Explain how can I convert a string to a number?