What does == mean in texting?
No Answer is Posted For this Question
Be the First to Post Answer
what do you mean by defining a variable in our c code?
When is a null pointer used?
What is difference between union and structure in c?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
What is the difference between text and binary i/o?
What does 3 mean in texting?
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
Does c have circular shift operators?
Explain the difference between malloc() and calloc() in c?
Can u return two values using return keyword? If yes, how? If no, why?