C program execution always begins with
a) #include
b) comment (/*-------*/)
c) main()
d) declaration instructions
No Answer is Posted For this Question
Be the First to Post Answer
Taking an example,differentiate b/w loader and linker ?
what is diff b/w huge & far & near pointer??
What is array of structure in c programming?
Explain how does free() know explain how much memory to release?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
. Write a program to get a string and to convert the 1st letter of it to uppercase
What are multibyte characters?
What is dynamic variable in c?
When should volatile modifier be used?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
how to swap two integers 1 and 32767 without using third variable
void main() { int i=5; printf("%d",i++ + ++i); }