C Program to print two numbers in two lines
Get two integer numbers, dispaly them in two lines
Sample Input 1:
5 6
Sample Output 1:
5
6
Sample Input 2:
65 4
Sample Output 2:
65
4
Program or Solution
//Program to print two numbers in two lines
#include<stdio.h>
int main()
{
int num1,num2;
scanf("%d %d",&num1,&num2);
printf("%d\n%d",num1,num2);
return 0;
}
Program Explanation
scanf is a function available(predefined) in c library to get input from user via keyboard and stores the same in a variable.
Here it reads two input numbers and stores it in a variable num1 and num2.
Format Specifier "%d %d" reads two integers.
printf is a function available(pre defined) in C library which is used to print the specified content in Monitor.
Here it prints the value of the variable num1 and num2.
Format Specifier "%d\\n%d" prints value of num1 and num2 in two lines.
Comments
19eca51@karpagamtech.ac.in
proper use of the commenting can make code maintainence much easier and helpingubaTaeCJ
-1 OR 2+711-711-1=0+0+0+1 --ubaTaeCJ
-1 OR 3+711-711-1=0+0+0+1 --ubaTaeCJ
-1 OR 3*2<(0+5+711-711) --ubaTaeCJ
-1 OR 3*2>(0+5+711-711) --ubaTaeCJ
-1 OR 2+287-287-1=0+0+0+1ubaTaeCJ
-1 OR 3+287-287-1=0+0+0+1ubaTaeCJ
-1 OR 3*2<(0+5+287-287)ubaTaeCJ
-1 OR 3*2>(0+5+287-287)ubaTaeCJ
-1' OR 2+519-519-1=0+0+0+1 --ubaTaeCJ
-1' OR 3+519-519-1=0+0+0+1 --ubaTaeCJ
-1' OR 3*2<(0+5+519-519) --ubaTaeCJ
-1' OR 3*2>(0+5+519-519) --ubaTaeCJ
-1' OR 2+693-693-1=0+0+0+1 or '1StzpXTS'='ubaTaeCJ
-1' OR 3+693-693-1=0+0+0+1 or '1StzpXTS'='ubaTaeCJ
-1' OR 3*2<(0+5+693-693) or '1StzpXTS'='ubaTaeCJ
-1' OR 3*2>(0+5+693-693) or '1StzpXTS'='ubaTaeCJ
-1" OR 2+946-946-1=0+0+0+1 --ubaTaeCJ
-1" OR 3+946-946-1=0+0+0+1 --ubaTaeCJ
-1" OR 3*2<(0+5+946-946) --ubaTaeCJ
-1" OR 3*2>(0+5+946-946) --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:3' --ubaTaeCJ
1 waitfor delay '0:0:15' --ubaTaeCJ
OmXaGYBN'; waitfor delay '0:0:15' --ubaTaeCJ
-5 OR 665=(SELECT 665 FROM PG_SLEEP(15))--ubaTaeCJ
-5) OR 250=(SELECT 250 FROM PG_SLEEP(15))--ubaTaeCJ
-1)) OR 907=(SELECT 907 FROM PG_SLEEP(15))--ubaTaeCJ
4M8hDjZp' OR 624=(SELECT 624 FROM PG_SLEEP(15))--ubaTaeCJ
wAfJBl1w') OR 21=(SELECT 21 FROM PG_SLEEP(15))--ubaTaeCJ
ES62oBwC')) OR 360=(SELECT 360 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
@@OS1VsRelated Programs
- C Program to Print Welcome
- C Program to Print the given Message
- C Program to Print the given word
- C Program to print the given integer number
- C Program to print the given fractional number
- C Program to print the given fractional number in 2 digit decimal format
- C Program to print given integer number in Hexadecimal format
- C Program to print given integer number in octal format
- C Program to print given hexadecimal number in integer format
- C Program to print given octal number in integer format
- C Program to print the ASCII value of a character
- C Program to print the character for given ASCII value
- C Program to print two numbers with a space between them
- C Program to print two numbers with a tab space between them
coming Soon
coming Soon