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 76722Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
3 9172Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 5530in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
4 8681#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 8672
Who is the founder of c language?
Why isn't it being handled properly?
How macro execution is faster than function ?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the difference between variable declaration and variable definition in c?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Explain logical errors? Compare with syntax errors.
Is c is a procedural language?
what is the diffrenet bettwen HTTP and internet protocol
develop algorithms to add polynomials (i) in one variable
What do you mean by a sequential access file?
What is sorting in c plus plus?
How can I recover the file name given an open stream or file descriptor?