|
Question |
Rating |
View Answer |
|
What is an abstract class? |
|
View Answer |
|
Why two pointers cannot be added in c language? |
|
View Answer |
|
How to write a C program for displaying a sentence without output command? |
|
View Answer |
|
What is c graphics? |
|
View Answer |
|
What is C language ? |
|
View Answer |
|
What will be printed as the result of the operation below:
main() { char s1[]=“Cisco”; char s2[]= “systems”; printf(“%s”,s1); } |
|
View Answer |
|
What are the packages in c? |
|
View Answer |
|
What will be printed as the result of the operation below:
#define swap(a,b) a=a+b;b=a-b;a=a-b;
void main() { int x=5, y=10; swap (x,y); printf(“%d %dn”,x,y); swap2(x,y); printf(“%d %dn”,x,y); }
int swap2(int a, int b) { int temp; temp=a; b=a; a=temp; return 0;
}
|
|
View Answer |
|
If compiler for c is written in c language, which is used to complie the compiler?
|
|
View Answer |
|
How to find GCD of four numbers?
|
|
View Answer |
|
Can Any other language completely replace c? |
|
View Answer |
|
What is the use of semicolon at the end of every statement? |
|
View Answer |
|
Is it possible to print graphics output in C? |
|
View Answer |
|
What will be printed as the result of the operation below:
main() { int a=0; if(a==0) printf(“Cisco Systemsn”); printf(“Cisco Systemsn”);
}
|
|
View Answer |
|
What is the difference between
#include< > and #include" "
|
|
View Answer |
|
# What will be the result of the following code?
#define TRUE 0 // some code
while(TRUE) {
// some code
}
|
|
View Answer |
|
What is :- Asembler , compiler , Preprocessor , laxical analysis , parsing ? |
|
View Answer |
|
What is Preprocessor? |
|
View Answer |
|
When we access the integer and the character variables without declaring them in program?and Why? |
|
View Answer |
|
What are C and C++ languages? |
|
View Answer |