- 1
How does C# is different than C ? or its just same ?
1 Réponse
+ 4
Hi Prarambh.
Good question! I search about and found in www.differencebtw.com:
C programming language is more suitable for system programming apps, hardware apps, embedded device and chip designing. While C# is suitable for apps development and web apps development.
Both C and C# deals in four basic data type like int, float, double and char. C# has one addition data type feature Booleans, which is used to shows the output of logical operations.
Total 32 keywords are used in C programming language while in C# total 87 keywords are used.
C# has more integral type as compare to C. There is only one type of integral in C, which are two in C#, char type and whole number which can be signed or unsigned.
C is a structure oriented programming language while C# is an object oriented language.
Top down approach program structure is followed by C while bottom up approach program structure is adopted by C#.