print ur name without using any semicolon in c/c++....
Answer Posted / ravi pandey
#include<stdio.h>
main()
{if(printf("ravi"))
}
| Is This Answer Correct ? | 9 Yes | 15 No |
Post New Answer View All Answers
Why should I prototype a function?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is #include called?
Why is not a pointer null after calling free?
What is a pointer variable in c language?
Write a program to swap two numbers without using third variable in c?
What is linear search?
Tell us two differences between new () and malloc ()?
What is register variable in c language?
How do I use strcmp?
Why we use break in c?
What is null pointer constant?
What is omp_num_threads?
In c programming language, how many parameters can be passed to a function ?
How does selection sort work in c?