How we can write a value to an address using macro..?
No Answer is Posted For this Question
Be the First to Post Answer
Is c language still used?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
write a program to display all prime numbers
What are predefined functions in c?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
What is function prototype in c language?
What is the purpose of 'register' keyword in c language?
What are pointers really good for, anyway?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is a stream?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }