write c program without semicolon
Answer Posted / saurabh rakhecha
int main()
{
if (printf(" Hello"))
{
// EMPTY
}
}
Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Write the Program to reverse a string using pointers.
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the purpose of main() function?
code for find determinent of amatrix
define string ?
int far *near * p; means
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the difference between a function and a method in c?
What is the purpose of void pointer?
What should malloc(0) do?
Is Exception handling possible in c language?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Why static is used in c?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
If fflush wont work, what can I use to flush input?