Coder Baba
2.41K subscribers
1.01K photos
23 videos
722 files
726 links
Everything about programming for beginners.
1 and only official telegram channel of CODERBABA India.

Content:
.NET Developer,
Programming (ASP. NET, VB. NET, C#, SQL Server),
& Projects
follow me https://linktr.ee/coderbaba
*Programming
*Coding
*Note
Download Telegram
csharp_quick_guide.pdf
323.3 KB
C# - QUICK GUIDE Notes By 👉📒👆👆TutorialsPoint
What can SQL do?
• SQL can execute queries against a database
• SQL can retrieve data from a database
• SQL can insert records in a database
• SQL can update records in a database
• SQL can delete records from a database
• SQL can create new databases
• SQL can create new tables in a database
• SQL can create stored procedures in a database
• SQL can create views in a database
• SQL can set permissions on tables, procedures, and views

follow @Coder_baba
👆👆
follow @coder_baba
SQL Server + ASP.NET = Powerful Web Applications
ADO .NET
what is Web Services
Assignment No 1.pdf
416 KB
Folder Structure for Software Testing👆👆
Request - Project details.docx
19.7 KB
Project Requirement Details for Final year Project Demo document for your information
C program to check odd or even using modulus operator
#include<stdio.h>

main()
{
int n;

printf("Enter an integer\n");
scanf("%d",&n);

if ( n%2 == 0 )
printf("Even\n");
else
printf("Odd\n");

return 0;
}
C program to check odd or even using bitwise operator

#include<stdio.h>

main()
{
int n;

printf("Enter an integer\n");
scanf("%d",&n);

if ( n & 1 == 1 )
printf("Odd\n");
else
printf("Even\n");

return 0;
}
C program to check odd or even without using bitwise or modulus operator
#include<stdio.h>

main()
{
int n;

printf("Enter an integer\n");
scanf("%d",&n);

if ( (n/2)*2 == n )
printf("Even\n");
else
printf("Odd\n");

return 0;
}
Find odd or even using conditional operator
#include<stdio.h>

main()
{
int n;

printf("Enter an integer\n");
scanf("%d",&n);

n%2 == 0 ? printf("Even number\n") : printf("Odd number\n");

return 0;
}
c program to check whether input alphabet is a vowel or not
This code checks whether an input alphabet is a vowel or not. Both lower-case and upper-case are checked.
C programming code
#include <stdio.h>

main()
{
char ch;

printf("Enter a character\n");
scanf("%c", &ch);

if (ch == 'a' ch == 'A' ch == 'e' ch == 'E' ch == 'i' ch == 'I' ch =='o' ch=='O' ch == 'u' || ch == 'U')
printf("%c is a vowel.\n", ch);
else
printf("%c is not a vowel.\n", ch);

return 0;
}
Output:

a
a is vowel
Check vowel using switch statement
#include <stdio.h>

main()
{
char ch;

printf("Enter a character\n");
scanf("%c", &ch);

switch(ch)
{
case 'a':
case 'A':
case 'e':
case 'E':
case 'i':
case 'I':
case 'o':
case 'O':
case 'u':
case 'U':
printf("%c is a vowel.\n", ch);
break;
default:
printf("%c is not a vowel.\n", ch);
}

return 0;
}