Who developed c language and when?
No Answer is Posted For this Question
Be the First to Post Answer
Are comments included during the compilation stage and placed in the EXE file as well?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Can stdout be forced to print somewhere other than the screen?
what is printf
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
what is the function of void main()?
Can you write the function prototype, definition and mention the other requirements.
What are signals in C?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What's the best way to declare and define global variables?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.