print ur name without using any semicolon in c/c++....
Answer Posted / shariq khan
#include<stdio.h>
#define A;
void main()
{
printf("shariq khan")A
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is double pointer?
What is || operator and how does it function in a program?
How many levels of indirection in pointers can you have in a single declaration?
What is a built-in function in C?
How can I avoid the abort, retry, fail messages?
How are 16- and 32-bit numbers stored?
Explain what is operator promotion?
#include
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is the explanation for prototype function in c?
Explain how can I make sure that my program is the only one accessing a file?
How does placing some code lines between the comment symbol help in debugging the code?
Give differences between - new and malloc() , delete and free() ?
code for find determinent of amatrix
Is c compiled or interpreted?