what is the large sustained error signal that eventually
cause the controller output to drive to its limit
Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a do...while loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j .
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
How to reverse a linked list without using array & -1? Thank you.
A sample program using data structure? what is file handling?
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
what is run time error?
how tally is useful?
What are the different types of errors in C and when they occur?
What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0
how to convert decimal to hexadecimal without using arrays just loops
Write a c-programe that input one number of four digits and find digits sum?