July 7, 2021 in C and CPP
Write a C program to write a line of string in a text file.
b) Write a C program to write a line of string in a text file.
July 7, 2021 in C and CPP
b) Write a C program to write a line of string in a text file.
July 7, 2021 in C and CPP
a) Write a C program that displays the recommended actions depending on the color of a
traffic light using the switch statement.
July 7, 2021 in C and CPP
c) Do you think C language support ‘pointer to function’? Explain it by any example?
July 7, 2021 in C and CPP
b) Define void data type and write any three use of it.
July 7, 2021 in C and CPP
a) What will be output of the operations below?
main()
{ int a=10,b=25;
a=b++ + a++;
b= ++b + ++a;
printf(“%d %d \n”,a,b); }
July 7, 2021 in C and CPP
c) What is dangling pointer in C? What is wild pointer in C? Give example.
July 7, 2021 in C and CPP
b) What are merits and demerits of array in C?
July 7, 2021 in C and CPP
a) Write a C program to find size of structure without using sizeof operator.
July 7, 2021 in C and CPP
c) Write a C program to find the square root of a given quadratic equation.
July 7, 2021 in C and CPP
b) Write a C program to print given number of terms of a Fibonacci series.