Can static variables be declared in a header file?
No Answer is Posted For this Question
Be the First to Post Answer
What is a pointer on a pointer in c programming language?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
What are conditional operators in C?
Describe advantages and disadvantages of the various stock sorting algorithms
Explain what is meant by high-order and low-order bytes?
What are the types of unary operators?
Give differences between - new and malloc() , delete and free() ?
What do you mean by a local block?
What is null in c?
What is the difference between text and binary modes?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above