Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d
",myvar);What will be printed
a) 3
b) 5
c) 8
d) symbol
No Answer is Posted For this Question
Be the First to Post Answer
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
What is the difference between exit() and _exit()?
How do you do dynamic memory allocation in C applications?
What is pragma in c?
Explain why can’t constant values be used to define an array’s initial size?
how to print this sereis 2 4 3 6 5..........?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
i am using gsm modem ! I USE CMGL COMMAND TO DISPLAY THE LIST OF MESSAGES ! I WANT TO READ EACH MESSAGE ONE BY ONE AND GET EACH MESSAGE INDEX USING C PROGRAM ! THE RESPONSE OF THE MODULE AFTER AT+CMGL IS ---CMGL: 1,"REC READ","+85291234567",,"07/05/01,08:00:15+32",145,37 It is easy to list SMS text messages.---- I WANT THE PROGRAM TO GET THE NUMBER "37"{MESSAGE LENGTH} AS WELL AS "1"(MESSAGE INDEX NUMBER" PLEASE HELP
What is a protocol in c?
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
What are header files why are they important?
Explain #pragma in C.