What is the use of keyword VOLATILE in C?
Answer / pawan
It prevent the (pseudo)compiler from applying any
optimizations on the code
| Is This Answer Correct ? | 2 Yes | 2 No |
What 'lex' does?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
using for loop sum 2 number of any 4 digit number in c language
What is header file definition?
write a “Hello World” program in “c” without using a semicolon?
Difference between Function to pointer and pointer to function
What is a program flowchart and how does it help in writing a program?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is bss in c?
Can a program have two main functions?