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 70557Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
3 7218Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 4097in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
4 6384#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 6599
What is keyword with example?
Explain what is the general form of a c program?
Why should I prototype a function?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What’s a signal? Explain what do I use signals for?
Are enumerations really portable?
Difference between Shallow copy and Deep copy?
What is the use of #include in c?
what are bit fields? What is the use of bit fields in a structure declaration?
What are the different types of pointers used in c language?
Explain what is a stream?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Do pointers take up memory?
What is the meaning of typedef struct in c?
What is table lookup in c?