increment operateor (++)and decrament(--)
#include<stdio.h>
#inclide<conio.h>
main()
{
int x=15;
while(x!=0)
scanf("%d",&x);
{
Answers were Sorted based on User's Feedback
write a program in c to print **** * * * * ****
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
The difference between printf and fprintf is ?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Are pointers integer?
What is external and internal variables What is dynamic memory allocation what is storage classes in C
Wt are the Buses in C Language
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
what is the size of an integer variable?