Can a variable be both const and volatile?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of union?
What is structure in c explain with example?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is a stream?
Explain in detail how strset (string handling function works )pls explain it with an example.
What is local and global variable in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
What is string function c?
Write a program to compute the following 1!+2!+...n!