What does != Mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for even numbers?
Why shouldn’t I start variable names with underscores?
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
i need all types of question paper releted to "c" and other language.
Explain bitwise shift operators?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Write a program to find given number is even or odd without using any control statement.
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
in iso what are the common technological language?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
How do I swap bytes?