Not all reserved words are written in lowercase. TRUE or FALSE?
No Answer is Posted For this Question
Be the First to Post Answer
discuss the steps needed to get a program from source code to executable in a system?
Explain how can I read and write comma-delimited text?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
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(); }
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
How do you define a string?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
triangle number finding program...
formula to convert 2500mmh2o into m3/hr
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
Is c is a high level language?