What is auto keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is 02d in c?
What is meant by gets in c?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Can we use any name in place of argv and argc as command line arguments?
What is the meaning of ?
Write a program to find the biggest number of three numbers in c?
a=5 a=a++/++a
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
write a programe returns the number of times the character appears in the string
Write a program in C to convert date displayed in gregorian to julian date
Difference between goto, long jmp() and setjmp()?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?