whenever a question is posted in a particular category in
allinterview.com, Is there any facility to receive an
indication mail.
For eg: I need to receive an indication email, whenever a
question is posted under the category “C Langauage”.
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
What is the scope of an external variable in c?
what is difference b/w extern & volatile variable??
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
how to find turn around time in operating system?
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
What are data breakpoints?
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
how to print a statement in c without use of console statement ,with the help of if statement it should print
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?