What is the significance of scope resolution operator?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
Can you assign a different address to an array tag?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is the difference between far and near ?
Can a variable be both const and volatile?
What is the difference between array and structure in c?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What is oops c?
What is the method to save data in stack data structure type?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?