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:
Write a C program to find both the largest and smallest number in list of integers.
Briefly differentiate between CDMA and GSM technologies.
Write a C program to find factorial(using recursion) of any no.
What is SRS? Write the features of SRS.
What is an unrolled linked list?
Write short notes on the following :
a) BFS
b) Tail recursion