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
What is strcpy() function?
What is the use of bit field?
how to write a c program to print list of fruits in alpabetical order?
Are bit fields portable?
What is the value of h?
What is a function in c?
What is modifier & how many types of modifiers available in c?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What does c in a circle mean?
What is size of union in c?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
What is c token?
Why does everyone say not to use scanf? What should I use instead?
Write a program to print all permutations of a given string.
What is the use of typedef in structure in c?