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 76325Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
3 9052Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 5428in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
4 8514#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 8555
What is the use of c language in real life?
Do you know pointer in c?
What is typeof in c?
How will you delete a node in DLL?
Why is void main used?
When should volatile modifier be used?
What library is sizeof in c?
Why should I use standard library functions instead of writing my own?
What is data type long in c?
What is malloc return c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Write a program to print fibonacci series using recursion?
Differentiate between null and void pointers.
List the variables are used for writing doubly linked list program.
What is indirection? How many levels of pointers can you have?