print ur name without using any semicolon in c/c++....
Answer Posted / vignesh1988i
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
if(printf("vignesh s r "))
{
i=1;
}
getch();
}
Is This Answer Correct ? | 72 Yes | 47 No |
Post New Answer View All Answers
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
How many bytes is a struct in c?
How do you define a string?
Tell us something about keyword 'auto'.
What is meant by preprocessor in c?
Explain how do you sort filenames in a directory?
what will be maximum number of comparisons when number of elements are given?
What is difference between stdio h and conio h?
Explain how do you determine the length of a string value that was stored in a variable?
What are keywords c?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
All technical questions
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is meant by realloc()?
What are the characteristics of arrays in c?