c program to print a name without using semicolon
Answers were Sorted based on User's Feedback
Answer / jeke kumar gochhayat
#include<stdio.h>
void main()
{
if(printf("jeke kumar gochhayat"))
}
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / rajesh dixit
#include<stdio.h>
#include<coio.h>
void main()
{
if(printf("rajesh dixit"))
{
}
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / 080132
#include<stdio.h>
#include<conio.h>
void main{
if(printf("I am arafat from jstu")){
}
if(printf(" ")){
}
if(getch()){
}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / nirbhay gupta
#define $ ;
main()
{
printf("i am Nirbhay Gupta")$
printf("right")$
}
| Is This Answer Correct ? | 5 Yes | 18 No |
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
What are the advantages of union?
Discuss the function of conditional operator, size of operator and comma operator with examples.
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
How do you write a program which produces its own source code as its output?
If null and 0 are equivalent as null pointer constants, which should I use?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
What should be keep precautions while using the recursion method?
Why is c called c?
can a union be self-referenced?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..