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 type of function is main ()?
Explain enumerated types in c language?
Is c language still used?
When should the register modifier be used? Does it really help?
What are c header files?
What is array of structure in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain how can I remove the trailing spaces from a string?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is difference between structure and union in c programming?
What is extern keyword in c?
What are loops in c?
What is main () in c?
What do the functions atoi(), itoa() and gcvt() do?
What is the -> in c?