geditok thanks. May I know which compiler is best for Windows 8.1 C++ Programs....
geditHEllo may I know how to compile programs in GEDIT
Identify the errors in the following code segment and give the reason of errors.[code]main(){ int x = 10 const int *ptr = &x ; *ptr = 5 ; } main() { int x = 10; const int *...
How many bytes will the pointer intPtr of type int move in the following statement? intPtr += 3 ;How many bytes will the pointer intPtr of type int move in the following statement? intPtr += 3 ; ...
Choose the correct answer.[b]Consider the following code segment. What will the following code segment display?[/b] [code]int...