What is class and object in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Explain can you assign a different address to an array tag?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What is && in c programming?
Can a pointer be static?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What are the applications of c language?
Write a program in C to reverse a number by recursive function?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }