Answer Posted / raavi.swami
#include<stdio.h>
#define begin main
void begin()
{
printf("Hello");
}
| Is This Answer Correct ? | 27 Yes | 2 No |
Post New Answer View All Answers
What is the difference between declaring a variable by constant keyword and #define ing that variable?
swap 2 numbers without using third variable?
What is conio h in c?
What is the advantage of using #define to declare a constant?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is the difference between char array and char pointer?
What is echo in c programming?
How can I find the modification date and time of a file?
What are called c variables?
What is the difference between %d and %i?
Is there any possibility to create customized header file with c programming language?
What is putchar() function?
What does char * * argv mean in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
List the different types of c tokens?