What is probability to guarantee that the task a programmer
is going to create will be created and be able to run on a
particular system (RTOS/GPOS).
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?
printy(a=3,a=2)
void main() { int i=5,y=3,z=2,ans; clrscr(); printf("%d",++i + --z + i++ + --i * ++y); i=5,y=3,z=2; ans=++i + --z + i++ + --i * ++y; printf("\n%d",ans); getch(); } Its output is 37 and 31.... Please explain me why its different How it works.....
loop1: { x=i<n?(i++):0; printf("%d",i); exit(x); continue; } Error- misplaced continue. Doubt-1.will the exit(x) be executed for all values of x 2.will this statement go out of the program.
who was the present cheif governor of reserve bank of india
6 Answers State Bank Of India SBI,
Write down the difference between c. Loop and goto statement d. (!0) and (!1) e. (1= =! 1) and (1!=1) f. NULL and !NULL
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
Write a c-programe that input one number of four digits and find digits sum?
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)
main() { char c; for(c='A';c<='Z';c++) getch(); }