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
C language questions for civil engineering
Write a C program to count the number of email on text
Disadvantages of C language.
Is c procedural or object oriented?
Explain what is a static function?
Explain what is the difference between functions getch() and getche()?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is the use of sizeof () in c?
What does %p mean?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Explain the process of converting a Tree into a Binary Tree.
how should functions be apportioned among source files?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is a char c?
Create a simple code fragment that will swap the values of two variables num1 and num2.