a value that does not change during program execution
a) variabe
b) argument
c) parameter
d) none
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
#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?
how i m write c program 1.check prime number 2.prime number series
What is f'n in math?
What are loops c?
How many header files are in c?
What are the types of i/o functions?
Why is the code below functioning. According to me it MUST NOT.
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is static function in c?
What is the difference between local variable and global variable in c?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.