main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}
write a program which will count occurance of a day between two dates.
Why static variable is used in c?
Explain what are bus errors, memory faults, and core dumps?
Explain what are the different file extensions involved when programming in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is a node in c?
What is the sizeof () operator?
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
Is c call by value?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
what is the difference between global variable & static variable declared out side all the function in the file.