Answer Posted / reshma
void main()
{
int i=0;
while(1)
{
printf("%d",&i);
i++;
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is register variable in c language?
What is #define used for in c?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
In a header file whether functions are declared or defined?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is uint8 in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain about the functions strcat() and strcmp()?
int i=10; printf("%d %d %d", i, i=20, i);
What is this pointer in c plus plus?
using only #include
Explain the difference between the local variable and global variable in c?
What is a program flowchart and explain how does it help in writing a program?
Is struct oop?
What should malloc() do?