Explain continue keyword in c
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between postfix and prefix unary increment operators?
Describe the steps to insert data into a singly linked list.
Explain what a Binary Search Tree is.
What is the main differences between C and Embedded C?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Compare and contrast compilers from interpreters.
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is getche() function?
Are comments included during the compilation stage and placed in the EXE file as well?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
What are external variables in c?