which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answers were Sorted based on User's Feedback
Answer / debasish mishra
#pragma is not a preprocessor directive
| Is This Answer Correct ? | 2 Yes | 9 No |
write a string copy function routine?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
difference between function & structure
c programming of binary addition of two binary numbers
what is difference between null and nul in c language
List some basic data types in c?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
Explain the difference between struct and union.
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
write a program without using main function?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }