Explain what are global variables and explain how do you declare them?
No Answer is Posted For this Question
Be the First to Post Answer
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
Is c functional or procedural?
What is function in c with example?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
How can I find out how much memory is available?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is the modulus operator?
How does the C program handle segmentation faults?
Write a program with dynamically allocation of variable.
Given an unsigned integer, find if the number is power of 2?
What is void main ()?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }