FrameWork क्या है? What is Framework in Hindi
यदि आप एक डेवलपर है तो आपने फ्रेमवर्क के बारे में जरूर सुना होगा. आपमें से कई लोगो ने यूज़ …
यदि आप एक डेवलपर है तो आपने फ्रेमवर्क के बारे में जरूर सुना होगा. आपमें से कई लोगो ने यूज़ …
यदि आप वेब डेवलपमेंट की फील्ड से है या इसमें अपना फ्यूचर बनाना चाहते है तो आपने जावा एक बारे …
Write a program having a variable i. print the address of i. pass this variable to a function and print …
Write a c program to print the address of variable. use this address to get the value of this variable …
Write a c program to check whether a given number is a perfect number or not #include <stdio.h> int main() { int a, i, store =0; printf(“Enter the number\n”); scanf(“%d”, &a); for (int i = 1; i < a; i++) …