What is register variable in c language?
Is c language still used?
pascal triangle program
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Where we use clrscr in c?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
what is the difference between char * const and const char *?
Differentiate between a structure and a union.
How do you define CONSTANT in C?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.