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 are the types of functions in c?
What does nil mean in c?
what does static variable mean?
Can we assign string to char pointer?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
What are the string functions? List some string functions available in c.
What is nested structure with example?
what is mallloc()?how it works?
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
Difference between exit() and _exit() function?
Is null valid for pointers to functions?