Stimulate calculator using Switch-case-default statement for
two numbers
what is c language?
What is strcpy() function?
How macro execution is faster than function ?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
What is scanf_s in c?
Write a C program that reads a series of strings and prints only those ending in "ed"
Where static variables are stored in memory in c?
What is structure and union in c?
Why c is faster than c++?
What is declaration and definition in c?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program