How will you write a code for accessing the length of an array without assigning it to another variable?
No Answer is Posted For this Question
Be the First to Post Answer
How to declare a variable?
what is data structure.in linear and non linear data structures which one is better?Explain
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
How do I access command-line arguments?
What is page thrashing?
Is c is a procedural language?
how to find a 5th bit is set in c program
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
What is the difference between #include <header file> and #include “header file”?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What is wild pointer in c?