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 is the general form of #line preprocessor?
What are the different types of C instructions?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
what is meant by flushll() in c programming?
Write a program to reverse a linked list in c.
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
What are the two types of functions in c?
who is the founder of c
19 Answers College School Exams Tests, HP,
How can I find the modification date and time of a file?
What is modeling?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?