What are the 5 types of inheritance in c ++?
No Answer is Posted For this Question
Be the First to Post Answer
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.
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
Should I learn data structures in c or python?
Can a variable be both static and volatile in c?
what is c programming?
Write a simple code fragment that will check if a number is positive or negative.
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
what is different between auto and local static? why should we use local static?
What is pragma in c?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);