Write a C program to convert any name in short name.
#include<stdio.h> #include<conio.h> int isupper(char); main() { char c; printf("\n Enter any name"); while((c=getchar())!='\n') { if(isupper(c)==1) { putchar(c); putchar('.'); } } getch(); } int isupper(char x) { if(x>='A'&&x<='Z') return 1; else return 0; }
Output:
Eliminate left recursion from the following grammar:
Write a C program to print pattern below:
*
* *
* * *
* * * *
Define software quality. Briefly explain McCall’s quality factors.
What is linear searching?
Difference between ISO and CMM standards.
Write a C program to find the roots of a quadratic equation.