|
Question |
Rating |
View Answer |
|
How do you print an address?
|
|
View Answer |
|
Can you write a c program without using main function? |
|
View Answer |
|
Write a program for result management system of a college ? |
|
View Answer |
|
Point out error, if any, in the following program main() { int i=1; switch(i) { case 1: printf("nRadioactive cats have 18 half-lives"); break; case 1*2+4: printf("nBottle for rent -inquire within"); break; } }
|
|
View Answer |
|
What are the features of C?
|
|
View Answer |
|
What are the characteristics of arrays in C? |
|
View Answer |
|
What is the benefit of using #define to declare a constant ? |
|
View Answer |
|
When should the register modifier be used? Does it really help?
|
|
View Answer |
|
Write a C program to print that a number is odd or even? |
|
View Answer |
|
What is the difference between #include <file> and #include “file”?
|
|
View Answer |
|
How to print value without using any output statements? |
|
View Answer |
|
c is a structural or highlevel or middle level language which one is correct answer
|
|
View Answer |
|
What is the difference between #include <file> and #include �file� |
|
View Answer |
|
What will be printed as the result of the operation below:
main() { int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf(“%d%dn”,x,y);
}
|
|
View Answer |
|
What are the different storage classes in C ? |
|
View Answer |
|
how do i get started for any project? |
|
View Answer |
|
Is the c is procedure oriented? |
|
View Answer |
|
How to improve my c knowledge........
|
|
View Answer |
|
Will finally block get executed if the exception had not occurred? |
|
View Answer |
|
What is object file? How can you access object file? |
|
View Answer |