the portion of a computer program within which the definition of the variable remains unchanged
a) mode
b) module
c) scope
d) none
No Answer is Posted For this Question
Be the First to Post Answer
write a c/c++ programthat 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.
Why is c called "mother" language?
How can you restore a redirected standard stream?
sir, i cannot find the way how to write aprogram by using array on queue
What is structure data type in c?
What is sparse file?
write a program to convert a expression in polish notation (postfix) to inline (normal)
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
What is structure packing in c?