Explain what is a 'locale'?
No Answer is Posted For this Question
Be the First to Post Answer
char ch=10;printf("%d",ch);what is the output
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is pointers in c?
Is array name a pointer?
Explain the Difference between the New and Malloc keyword.
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
What's the right way to use errno?
What are integer variable, floating-point variable and character variable?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
main() {int a=200*200/100; printf("%d",a); }