There seem to be a few missing operators ..
No Answer is Posted For this Question
Be the First to Post Answer
Can we access the array using a pointer in c language?
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
Why we write conio h in c?
Who invented bcpl language?
Write a program with dynamically allocation of variable.
What are the storage classes in C?
What is main function in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
How can I run c program?
What is a pragma?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above