Can the sizeof operator be used to tell the size of an array passed to a function?
No Answer is Posted For this Question
Be the First to Post Answer
explain what is a newline escape sequence?
Why is c so important?
What are the different types of control structures in programming?
What are volatile variables?
What is variable in c with example?
Write a code to generate divisors of an integer?
What does malloc () calloc () realloc () free () do?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is strcpy() function?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
What is d scanf?
Find greatest number out of 10 number without using loop.