#include
main()
{
enum _tag{ left=10, right, front=100, back};
printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back);
}
No Answer is Posted For this Question
Be the First to Post Answer
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Is c language still used?
implement OR gate without using any bitwise operator.
can we define a function in structure?
Program to find the sum of digits of a given number until the sum becomes a single digit
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Where is volatile variable stored?
How can you read a directory in a C program?
Explain what will the preprocessor do for a program?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
Differentiate between new and malloc(), delete and free() ?