for(;;)
printf("C language")
What is out put of above??
Answer Posted / anilsn
compilation error, ; should be at the end of printf
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are structural members?
Explain what are its uses in c programming?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Write a program for Overriding.
using only #include
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is typedf?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What functions are in conio h?
What is the difference between malloc() and calloc() function in c language?
Which is the best website to learn c programming?
How can you tell whether a program was compiled using c versus c++?
Why do we use c for the speed of light?
Write a program to print "hello world" without using a semicolon?
What is calloc()?