What is the benefit of using #define to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
What is the scope of static variables?
Explain the difference between struct and union.
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
Why doesn't C support function overloading?
c program to subtract between two numbers without using '-' sign and subtract function.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
What is scope of variable in c?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Program to display given 3 integers in ascending order
Write a C/C++ program that 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