Tagged: c mcq soluversity

Quiz of c programming language 0

Quiz of c programming language

Quiz of c programming language Q 1 – What is the output of the following program? #include<stdio.h>main(){char*s =”Hello”;while(*s!=NULL)printf(“%c”,*s++);} A – Hello B – Helloellolloloo C – ello D – Compile error  Q 2 – What is the size of ‘int’?...

0

C and c++ series program part-1

C is a general-purpose language which has been closely associated with the  Unix operating system for which it was developed.In 1972, Dennis Ritchie at Bell Labs writes C and in 1978, the publication of The C Programming Language by Kernighan...