|
Question |
Rating |
View Answer |
|
What is C language? |
|
View Answer |
|
How many levels deep can include files be nested? |
|
View Answer |
|
What is an abstract base class? |
|
View Answer |
|
What are the applications and advantages of C-language? |
|
View Answer |
|
write a program for printing when i press a key next to the letter in the alphabetical order can be printed |
|
View Answer |
|
What will be printed as the result of the operation below:
main() { int x=10, y=15; x = x++; y = ++y; printf(“%d %dn”,x,y);
}
|
|
View Answer |
|
# What will be printed as the result of the operation below:
int x; int modifyvalue() { return(x+=10); }
int changevalue(int x) { return(x+=1); }
void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%dn",x);
x++; changevalue(x); printf("Second output:%dn",x); modifyvalue(); printf("Third output:%dn",x);
}
|
|
View Answer |
|
What will be printed as the result of the operation below:
main() { char *ptr = ” Cisco Systems”; *ptr++; printf(“%sn”,ptr); ptr++; printf(“%sn”,ptr);
}
|
|
View Answer |
|
how to create relation calculator program using c language |
|
View Answer |
|
What will be printed as the result of the operation below:
main() { int x=5; printf(“%d,%d,%dn”,x,x< <2,x>>2);
}
|
|
View Answer |
|
What is the differece between #define and constant in C?
|
|
View Answer |
|
Difference between "C structure" and "C++ structure". |
|
View Answer |