Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
No Answer is Posted For this Question
Be the First to Post Answer
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
How can a program be made to print the name of a source file where an error occurs?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
What are the modifiers available in c programming language?
What are pointers? What are stacks and queues?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
WHAT IS INT?
Tell me the use of bit field in c language?
What are pointers in C?
How can I invoke another program or command and trap its output?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
Where are the auto variables stored?