Is it valid to address one element beyond the end of an array?
No Answer is Posted For this Question
Be the First to Post Answer
In header files whether functions are declared or defined?
what are bitwise shift operators?
Dear Sir, we are required the bubble sorting programs Regs Prem
Binary tree traversing
Write a program to print all permutations of a given string.
What is the difference between constant pointer and pointer to a constant. Give examples.
declare afunction pointer to int printf(char *)?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is the mean of this statement:: if(int i=0 * i=9)
What is the difference between declaring a variable and defining a variable?
What is the process of writing the null pointer?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }