which of the following is allowed in a "C" arithematic instruction
a) []
b) {}
c) ()
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is the real time usage volatile?
What is an auto keyword in c?
Where static variables are stored in c?
When do we get logical errors?
#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?
What is 'bus error'?
What's the best way to declare and define global variables?
Is c still relevant?
1 1 12 21 123 321 12344231 how i creat it with for loop??
What is the difference between void main() and void main (void) give example programme?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What should malloc() do?