What is volatile variable in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
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 are the different file extensions involved when programming in C?
write a c program for greatest of three numbers without using if statment
why we use "include" word before calling the header file. is there any special name for that include??????
What is the purpose of scanf() and printf() functions?
Explain the differences between public, protected, private and internal.
what is dangling pointer?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
write a program to delete an item from a particular location of an linear array?
write program on arrays
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?