Are local variables initialized to zero by default in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is c object oriented?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What are the 4 types of programming language?
HOW TO HANDLE EXCEPTIONS IN C
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is the symbol indicated the c-preprocessor?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
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.
How can I increase the allowable number of simultaneously open files?
What is #error and use of it?
Why malloc is faster than calloc?