What is dynamic dispatch in c++?
main() { int i=400,j=300; printf("%d..%d"); }
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
Is it fine to write void main () or main () in c?
char ch=10;printf("%d",ch);what is the output
With the help of using classes, write a program to add two numbers.
what is c programing
what is memory leak?
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
Can you subtract pointers from each other? Why would you?
What is file in c preprocessor?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Program to write some contents into a file using file operations with proper error messages.