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 75813Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
3 8881Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 5298in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
4 8274#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 8354
How can I delete a file?
Is int a keyword in c?
What are the features of c language?
How can I read in an object file and jump to locations in it?
Why is c called a mid-level programming language?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is queue in c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What is the use of printf() and scanf() functions?
What is a pointer in c plus plus?
What are identifiers and keywords in c?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
what do you mean by inline function in C?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none