What is hungarian notation? Is it worthwhile?
No Answer is Posted For this Question
Be the First to Post Answer
What are local and global variables?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
What does p mean in physics?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
What is the difference between exit() and _exit() function in c?
How to define structures? ·
sir, i cannot find the way how to write aprogram by using array on queue
What is the difference between malloc() and realloc()?
implement OR gate without using any bitwise operator.
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?