What are global variables and how do you declare them?
No Answer is Posted For this Question
Be the First to Post Answer
What is a node in c?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Is an array parameter is always "by reference" ?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Explain what does it mean when a pointer is used in an if statement?
why TCS selected more student in the software field from all institution.
write a program in c to read array check element is present or not?
What is a nested loop?
What is a structure in c language. how to initialise a structure in c?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
int x=sizeof(!5.856); What will value of variable x?
What is a list in c?