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 |
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Why is c fast?
What is the difference between File pointer and Internal Charecter Pointer?
Difference between constant pointer and pointer to a constant.
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
pierrot's divisor program using c or c++ code
Why Modern OS are interrupt driven?Give an example
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
write a programme that inputs a number by user and gives its multiplication table.
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
swap two integer variables without using a third temporary variable?
What is include directive in c?