Do you know what is a programing language ?
No Answer is Posted For this Question
Be the First to Post Answer
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
sir, i cannot find the way how to write aprogram by using array on queue
#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 does main () mean in c?
What are logical errors and how does it differ from syntax errors?
what are brk, sbrk?
What is the purpose of main( ) in c language?
How are variables declared in c?
What is %s and %d in c?
What is hash table in c?
without using arithmatic operator solve which number is greater??????????
Are the variables argc and argv are local to main?