What are type modifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Explain what is page thrashing?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
What's the best way to declare and define global variables?
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Read two numbers from keyboard and find maximum of them?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
Create a simple code fragment that will swap the values of two variables num1 and num2.
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What are the advantages of external class?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)