What does the message "automatic aggregate intialization is an ansi feature" mean?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between declaring a variable and defining a variable?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What is the importance of c in your views?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
What is Full Form of C and Why We use C
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What do you know about the use of bit field?
what is meant by flushll() in c programming?
What is adt in c programming?
Explain how do you print an address?