Can a variable be both static and volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
When should volatile modifier be used?
Explain how does flowchart help in writing a program?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What does %d do in c?
Write a program in c to print 1 121 12321 1234321 123454321
11 Answers ANR, College School Exams Tests, Mu Sigma, Wipro,
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
How can you allocate arrays or structures bigger than 64K?
What are multidimensional arrays?
what is the difference between static variable and register variable?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
What type of function is main ()?