Answer Posted / gich
#include<stdio.h>
main()
{
int x;
for (x=10;x>=2;x-2;)
{
printf("x is %d\n"x);
{
}
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
Write a code to remove duplicates in a string.
Explain is it valid to address one element beyond the end of an array?
program for reversing a selected line word by word when multiple lines are given without using strrev
What are the types of variables in c?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Tell me when is a void pointer used?
Define and explain about ! Operator?
How can I write a function analogous to scanf?
Which one would you prefer - a macro or a function?
Can we add pointers together?
What is far pointer in c?
What is union and structure?
Stimulate calculator using Switch-case-default statement for two numbers
What is optimization in c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?