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 76890Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
3 9237Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 5587in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
4 8749#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 8725
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
will u please send me the placement papers to my mail???????????????????
What is the general form of a C program?
What is pointer to pointer in c with example?
What is pointers in c with example?
What are compound statements?
Differentiate between null and void pointers.
How can I implement sets or arrays of bits?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
develop algorithms to add polynomials (i) in one variable
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Is int a keyword in c?
write a c program to find the sum of five entered numbers using an array named number
What are pointers? What are different types of pointers?