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
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
Is the following code legal? struct a { int x; struct a b; }
write a program in c to print **** * * * * ****
Write a C program to find the smallest of three integers, without using any of the comparision operators.
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is the basic structure of c?
how to find greatet of 10 numbers without using array?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
write a progrmm in c language take user interface generate table using for loop?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What are signals in C?