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 68027Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
3 6587Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 3480in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
4 5572#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 5697
Can you tell me how to check whether a linked list is circular?
What is a substring in c?
What is the code for 3 questions and answer check in VisualBasic.Net?
What is the full form of getch?
What are multidimensional arrays?
What are the advantages of c preprocessor?
What are formal parameters?
What is a constant?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
How do I copy files?
What is the difference between functions abs() and fabs()?
What does return 1 means in c?
When should volatile modifier be used?
Differentiate call by value and call by reference?
Is c++ based on c?