What does static variable mean in c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
How can you print HELLO WORLD without using "semicolon"?
Are enumerations really portable?
What are the preprocessors?
what is c
Explain modulus operator.
Differentiate b/w Modify and Update commands giving example.
Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4
Differentiate between null and void pointers.
What are the average number of comparisons required to sort 3 elements?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
input any 4 digit number and find the difference of all the digits?