What are the two forms of #include directive?
No Answer is Posted For this Question
Be the First to Post Answer
1 232 34543 4567654 can anyone tell me how to slove this c question
Can we declare a function inside a function in c?
List the difference between a While & Do While loops?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
write a program to find the frequency of a number
What is scope and lifetime of a variable in c?
String concatenation
Is c still used?
What will be your course of action for a push operation?
What is the difference between scanf and fscanf?
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