write c program without semicolon
Answer Posted / anu
#include<stdio.h>
#include<conio.h>
#define SEMICOLON ;
void main()
{
printf("hELLO") SEMICOLON
getch() SEMICOLON
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is memory leak in c?
What is the role of this pointer?
What is double pointer in c?
What are different types of variables in c?
What is bss in c?
If you know then define #pragma?
Explain what are the advantages and disadvantages of a heap?
Explain Function Pointer?
What are pointers? What are stacks and queues?
Explain a pre-processor and its advantages.
How do you write a program which produces its own source code as output?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What does 1f stand for?
How many types of sorting are there in c?
How #define works?