C Program
C Program
Programming
C Language was not called C at the beginning. It has been named as C
after passing many stages of evolution.
Evolution of C:
ALGO -> BCPL -> B -> Tradition C -> K&R C -> ANSI C -> ANSI/ISO C -> C99.
It was developed at Bell Laboratories in 1972 by Dennis Ritchie.
C is the only programming language that exists for such a long period and
still it is widely used
C is the basis of many other programming languages like C++, Java,
JavaScript, Go, C#, PHP, Python, Perl, C-shell and many more
• C18 is the latest version of C Programming Language published in June
2018C2X
• Unix was one of the first operating system kernels implemented in a
language other than assembly and that was C
• A C program must have at least one function which must be main
• To use a variable, we must indicate its type whether it is an integer, float,
character, etc.
• C language has many built-in data types, and we can make our own using
structures and unions.
• Every data type has its size that may depend on the machine; for
example, an integer may be of 2 or 4 Bytes
• Data is stored in a binary form, i.e., group of bits where each bit may
be '0' or '1'.
Int main()
{
/* my program in c*/
Printf(“hello,world\n”);
Return 0;
}
Programming Facts:
int main()
{
printf(2 + "VTU");
return 0;
}
Example-3
#include <stdio.h>
int main()
{
printf("%c ", 5["GreekQuiz"]);
return 0;
}
Example-4
#include <stdio.h>
int main()
{
• printf("%c ", "GreekQuiz"[5]);
• return 0;
•}
Which of the following is true
(A) gets() can read a string with newline characters but a normal scanf()
with %s cannot
(B) gets() can read a string with spaces but a normal scanf() with %s
cannot.
(C) gets() can always replace scanf() without any additional code
(D) None of the above
Which of the following is true
(A) gets() doesn’t do any array bound testing and should not be used.
(B) fgets() should be used in place of gets() only for files, otherwise
gets() is fine
(C) gets() cannot read strings with spaces
(D) None of the above
Example-5
#include <stdio.h>
int main(void)
{
int x = printf("GreekQuiz");
printf("%d", x);
return 0;
}
What is the return type of getchar()?
(A) int
(B) char
(C) unsigned char
(D) float
Example-6
#include<stdio.h>
int main()
{
printf("%d", printf("%d", 1234));
return 0;
}
Example 7
#include "stdio.h"
int main()
{
int x, y = 5, z = 5;
x = y == z;
printf("%d", x);
getchar();
return 0;
}
What does the following C statement mean?
Scanf("%4s", str);
A - #include <file>
B - #include “file”
In C, what are the various types of real data type (floating point data type)?
A-!
B - &&
C-&
int main()
{
int i;
i = 1, 2, 3;
printf("%d", i);
return 0;
}
(A) 1.
(B) 3
(C) Garbage value
(D) Compile time error
• EXECUTION OF A C PROGRAM STARTS FROM WHICH FUNCTION?
• WHAT IS THE USE OF SIZEOF() FUNCTION IN C
• WHAT IS KEYWORD IN C
• CAN VARIABLE NAME START WITH NUMBERS
• WHAT ARE ALL DECISION CONTROL STATEMENTS IN C
• WHAT ARE ALL LOOP CONTROL STATEMENTS IN C
IF YOU WANT TO EXECUTE C PROGRAM EVEN AFTER MAIN FUNCTION
IS TERMINATED, WHICH FUNCTION CAN BE USED?