draw a flowchart that accepts two numbers and checks if the first is divisible by the second.
Write a program in C++ returning starting locations of a substring using pointers
WHAT IS THE DIFFERENCE BETWEEN C++ AND VC++
What two types of containers does the stl provide?
How to write a function that goes through an array of characters and eliminates any elements that are not letters (Legal letters can be either in an uppercase or a lowercase format.) The function removeNonLetters should return the new effective size of the array as the result.
what's the difference between function overloading and function overiding?
How Find, Replace and Go To commands ca be used to substitute one character string for another? Explain with the heIp of an example.
Distinguish between: a) Normal layout & Print Layout views b) Windows Clipboard & office Clipboard c) Save & Save As Commands d) Program File & Data File e) Pie Charts & Barr Charts
why & sign is used in copy constructor
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
Difference between Structure and Class in C++?
#define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf("%d %d",a,b); } What should be the value of a and b? My calc a=4 but syst a=6 how pls tell me if you know it?
Find the error in the following program struct point {struct point *next; int data; } x; main() {int...data; } x; main() {int i; for(x=p;x!=0;) x=x->next,x++; freelist(x); } freelist(x) {free(x); return }