Write a program to print ascending star pattern in C Language * ** *** **** ***** #include<stdio.h> int main(){…
Hasnain Altaf May 07, 2022Write a program to print descending star pattern in C language ***** **** *** ** * #include <stdio.h> int main(){…
Hasnain Altaf May 07, 2022Write a program to print star pattern which is given below in C-Language ***** ***** ***** ***** ***** #include<std…
Hasnain Altaf May 07, 2022Write a program to print number pattern below in C-language 9 8 7 6 5 4 3 2 1 9 8 7 6 5 4 3 2 9 8 7 6 5 4 3 9 8 7 6 5 4…
Hasnain Altaf May 07, 2022Write a program to print odd number and get range from user in C-Language. #include <conio.h> #include <stdio.…
Hasnain Altaf May 07, 2022Write a function in C for adding two numbers by taking argument #include <stdio.h> #include<stdio.h> voi…
Hasnain Altaf May 07, 2022Write a program to Convert temperature Celsius into fahrenheit or fahrenheit into Celsius #include <stdio.h> #inc…
Hasnain Altaf May 07, 2022Swapping Values in C language Q:-Write a program to swap two values get from the users:- #include <stdio.h> int …
Hasnain Altaf May 06, 2022Write a program that convert entered month number to month name Object:- Write a program that convert entered month num…
Hasnain Altaf May 06, 2022Write a program to check alphabet is Vowel or Consonant in C Language Q:- Write a program to check alphabet is Vowel …
Hasnain Altaf May 06, 2022How to divide numbers in C-Language Divide of numbers in C-Language Q:- How to Divide two constant numbers? Answer: #…
Hasnain Altaf May 01, 2022How to multiply numbers in C-Language Multiplications of numbers in C-Language Q:- How to Multiply two constant numbers…
Hasnain Altaf May 01, 2022Subtractions of numbers in C-Language: Q:- How to Subtract two constant numbers? Answer: #include <stdio.h> int …
Hasnain Altaf April 29, 2022Addition of numbers in C-Language: Q:- How to add two constant numbers? Answer: #include <iostream> int mai…
Hasnain Altaf April 29, 2022Print statement in C Language Hello , It is the tradition when we learn any programming language first teacher or a…
Hasnain Altaf April 28, 2022