Welcome to your C language
Who is the father of C language?
What is output of below program?
int main()
{
int i,j,k,count;
count=0;
for(i=0;i<5;i++)
{
for(j=0;j<5;j++)
{
count++;
} }
printf("%d",count);
return 0;
}
How are String represented in memory in C?
Almost every C program begins with the statement
Which language makes use of object oriented approach?
When a C program is executed, execution starts from
Which of the following operators in ‘C’ programming language takes only integer operands?
The most common use of the one dimensional array in C is
Choose correct C while loop syntax.
a. while(condition)
{
//statements
}
b. {
//statements
}
while(condition)
c. while(condition);
{
//statements
}
d. while()
{
if(condition)
{
//statements
}
}
Libray function getch() belongs to which header file?