increment operateor (++)and decrament(--)
#include<stdio.h>
#inclide<conio.h>
main()
{
int x=15;
while(x!=0)
scanf("%d",&x);
{
Answer Posted / suman
It shows syntax error
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is an operator?
What is the difference between functions getch() and getche()?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How can variables be characterized?
Can you please explain the difference between exit() and _exit() function?
Did c have any year 2000 problems?
Are enumerations really portable?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What are void pointers in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Why & is used in scanf in c?
Explain what is output redirection?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Do you know the use of fflush() function?