what is the main difference between sizeof() operator in c
and c++

Answer Posted / pinakin

Both same

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is polymorphism in oops with example?

525


What are objects in oop?

602


what type of questions

1688


What is multilevel inheritance explain with example?

619


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

2094






What is the oops and benefits of oops programming?

547


What is new keyword in oops?

586


Can enum be null?

581


Prepare me a program for the animation of train

1982


What is pure oop?

588


What are the advantages of polymorphism?

569


program for insertion ,deletion,sorting in double link list

2274


Explain virtual inheritance?

680


What is and I oop mean?

611


This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.

1630