Answer Posted / reshma
void main()
{
int i=0;
while(1)
{
printf("%d",&i);
i++;
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between #include
write a program for the normal snake games find in most of the mobiles.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
How will you delete a node in DLL?
How to write c functions that modify head pointer of a linked list?
What is void main () in c?
What are pointers in C? Give an example where to illustrate their significance.
What do header files do?
How variables are declared in c?
Is javascript based on c?
Explain spaghetti programming?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Are the outer parentheses in return statements really optional?