What is function prototype in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
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
Write a code of a general series where the next element is the sum of last k terms.
What do mean by network ?
why do some people write if(0 == x) instead of if(x == 0)?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
c program to print a name without using semicolon
What is meant by preprocessor in c?
Can we compile a program without main() function?
How the c program is executed?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none