main()
{
charx;
while (x=0;x<=255;x++)
printf("\nAscii value %d Character %c,x,x);
}
Answers were Sorted based on User's Feedback
What are external variables in c?
What is structure padding ?
write a program that print itself even if the source file is deleted?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
Write a program to compute the following 1!+2!+...n!
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
What is ponter?
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
Why we use int main and void main?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What will the preprocessor do for a program?