1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
12 74396Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
3 8447Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 5029in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
4 7699#include
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
4 7865
What is pointer and structure in c?
Explain the properties of union. What is the size of a union variable
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is the deal on sprintf_s return value?
What is the difference between strcpy() and memcpy() function in c programming?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is c basic?
Explain the advantages of using macro in c language?
What is ambagious result in C? explain with an example.
What is return type in c?
How can you restore a redirected standard stream?
Compare array data type to pointer data type
Why should I prototype a function?
Do character constants represent numerical values?
write a c program for swapping two strings using pointer