What is sizeof array?
No Answer is Posted For this Question
Be the First to Post Answer
In c programming language, how many parameters can be passed to a function ?
write a program to find out prime number using sieve case?
What is wild pointer in c?
is it possible to change the default calling convention in c ?
In C, What is the #line used for?
Write a program that receives as input a number omaadel-n-print, four digits.
Differentiate between #include<...> and #include '...'
how memory store byte
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
What is difference between structure and union?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?