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
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Which is an example of a structural homology?
Wt are the Buses in C Language
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is the difference between volatile and const volatile?
What is the maximum no. of arguments that can be given in a command line in C.?
Write a program to implement queue.
Why c is called free form language?
What is function prototype?
What is assert and when would I use it?
What does %c do in c?
What is %d used for?
Should I learn c before c++?
What does 4d mean in c?